回答編集履歴

1

コードミス修正(func_num_args\(\)→func_get_args\(\))

2017/09/14 04:22

投稿

Tomak
Tomak

スコア1652

test CHANGED
@@ -154,7 +154,7 @@
154
154
 
155
155
  public static function search(){
156
156
 
157
- list($id,$title,...) = func_num_args();
157
+ list($id,$title,...) = func_get_args();
158
158
 
159
159
  return static::where("id", "=", $id)->where.....たくさん -> get();
160
160