laravel 报htmlentities() expects parameter 1 to be string,array given



遇到此类问题是由于在blade中使用了双括号输出数组

例如:后台给前端的参数是$file = array('a'=>1,'b'=>2);

前端在模板中使用{{$file}}

此种情况会报此类错误

如要输出,使用foreach输出数组

@foreach($file as $val)

{{$val}}

@endforeach


另一种是由于blade模板中使用双括号惊醒变量赋值数组

例如:后台传给前端$keywords = 'abc,edf,cdf';

前端在模板中使用{{$words = explode(',',$keywords)}}

这个时候$words是数组

此种情况也会报此类错误

如要实现上述赋值效果

可使用一下三种方法在模板中对变量进行赋值操作

1.

2.使用hack技巧

{{--*/$foo=bar()/*--}}

3.完美方案

在SericeProvider的boot方法里添加下面的代码,记得use Blade;

Blade::extend(function($value) {    return preg_replace('//@define(.+)/', '', $value);});
在blade里就可以使用以下方法实现变量赋值

@define $foo = bar()



你可能感兴趣的:(PHP,laravel)