错误:array_flip()期望参数1为数组,给定字符串

时间:2017-03-29 18:30:53

标签: php laravel

我是Laravel的新手,收到以下错误,

  

array_flip()期望参数1为数组,字符串为

in GuardsAttributes.php line 188
at HandleExceptions->handleError(2, 'array_flip() expects parameter 1 to be array, string given', '/Users/aaronmk2/Desktop/CodingDojo/php/onetoone/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php', 188, array('attributes' => array('name' => '2250 nw 59st Seattle, WA 98107')))
at array_flip('name') in GuardsAttributes.php line 188
at Model->fillableFromArray(array('name' => '2250 nw 59st Seattle, WA 98107')) in Model.php line 216
at Model->fill(array('name' => '2250 nw 59st Seattle, WA 98107')) in Model.php line 145
at Model->__construct(array('name' => '2250 nw 59st Seattle, WA 98107')) in web.php line 24

以下是创建问题的代码

Route::get('/insert', function(){
    $user = User::findOrFail(1);

    $address = new Address(['name' => '2250 nw 59st Seattle, WA 98107']);

    $user->address()->save( $address);
});

问题是什么?如何解决?

1 个答案:

答案 0 :(得分:5)

如果您要查看5.4源代码,您会看到发生此错误,因为您已将$fillable属性定义为字符串,如:

protected $fillable = 'name';

但它应该是一个数组:

protected $fillable = ['name'];