PHP報錯:php
strpos() expects parameter 1 to be string, integer given
出錯代碼數組
public static function showArticle($id) { ArticleModel::where('id', '=', $id) ->update(['is_show', 0]); }
問題在於數組的格式寫錯了ide
->update(['is_show', 0]);
應該修改成spa
public static function showArticle($id) { ArticleModel::where('id', '=', $id) ->update(['is_show'=> 0]); }
參考
【踩坑系列】strpos() expects parameter 1 to be string, int givencode