为什么php ==不能在工匠修补匠laravel上使用

时间:2018-09-11 06:24:59

标签: php laravel-5.5

标题时,我尝试使用equal id获取数据==,但结果为空数组,我错过了什么吗?...

➜  page php artisan tinker
Psy Shell v0.9.8 (PHP 7.1.16 — cli) by Justin Hileman
>>> $page = App\PageAtribut::where('page_id', '<', 2)->get()
=> Illuminate\Database\Eloquent\Collection {#2858
     all: [
       App\PageAtribut {#2844
         id: 1,
         page_id: 1,
         watchable_id: 1,
         watchable_type: "App\Category",
         created_at: "2018-09-11 11:03:20",
         updated_at: "2018-09-11 11:03:20",
       },
       App\PageAtribut {#2861
         id: 2,
         page_id: 1,
         watchable_id: 2,
         watchable_type: "App\User",
         created_at: "2018-09-11 11:03:40",
         updated_at: "2018-09-11 11:03:40",
       },
     ],
   }
>>> $page = App\PageAtribut::where('page_id', '==', 1)->get()
=> Illuminate\Database\Eloquent\Collection {#2846
     all: [],
   }
>>>

2 个答案:

答案 0 :(得分:2)

只需使用一个=。 laravel雄辩中没有==这样的东西。

答案 1 :(得分:0)

您需要使用单个'='。在close中使用的比较规则是mysql的规则,而不是php的规则。