這裏是我的代碼檢查字符串已在數據庫或不Laravel 5.2
$string = str_random(20);
$get_token = DB::table('users')->select('token')-> get();
現在我想用$get_token
比較$string
。如果它不在數據庫中,那麼它應該添加到值爲$string
的數據庫。
我寫過這段代碼。
if(strcmp($string , $get_token) !=0){
//add to DB
}
我怎樣才能比較我的字符串與每個已經在數據庫中的字符串。
謝謝
你使用'Models'? –
是的......我確實使用用戶模型。 –
可能的重複:http://stackoverflow.com/questions/27095090/laravel-checking-if-record-exists – Aborted