搜索框count():参数必须是数组或者实现了Countable的对象
Posted
技术标签:
【中文标题】搜索框count():参数必须是数组或者实现了Countable的对象【英文标题】:search box count(): Parameter must be an array or an object that implements Countable 【发布时间】:2019-04-02 22:29:28 【问题描述】:我正在尝试编写搜索代码 这是搜索方法:
public function searchcontent()
$searchkey = \Request::get('title');
$customer = customers::where('customer_name','like','%'.$searchkey. '%')->orderBy('id')->paginate(5);
return view('customers.search',['customer'=>$customer]);
这就是风景
@if(count($customer)>0)
@foreach($customer as $user)
<tr>
<td>$user->id</td>
<th>$user->name</th>
<th>$user->email</th>
<th>$user->phone</th>
<th>$user->city</th>
<tr>
@endforeach
@endif
<form class="form-header" action="url('tsearchcontent')" method="GET">
csrf_field()
<input class="au-input au-input--xl" type="text" name="title" placeholder=",,,,." />
<button class="au-btn--submit" type="submit">
<i class="zmdi zmdi-search"></i>
</button>
</form>
我得到了这个错误 count():参数必须是数组或者实现了Countable的对象
【问题讨论】:
【参考方案1】:在尝试调用 count() 之前,您需要检查您的客户对象是否为空。
【讨论】:
你的意思是在数据库中? 不,在您的代码中。检查它是否为空这里是参考***.com/questions/41269198/… 我添加了它。它显示了相同的错误消息@dustinos3以上是关于搜索框count():参数必须是数组或者实现了Countable的对象的主要内容,如果未能解决你的问题,请参考以下文章
Guzzle Error count():参数必须是数组或者实现了Countable的对象
PHP count():参数必须是数组或者实现了Countable的对象
yii2 gridview count():参数必须是实现Countable php 7.2的数组或者对象
count():参数必须是数组或者是laravel中实现Countable的对象