当前位置: 首页 > 知识库问答 >
问题:

搜索框计数():参数必须是实现可数的数组或对象

苏品
2023-03-14

我试图写一个搜索代码这是搜索方法:

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>

我得到了这个错误计数():参数必须是一个数组或一个实现可数的对象

共有1个答案

尉迟德惠
2023-03-14

在尝试调用count()之前,需要检查customer对象是否为null。

 类似资料:
  • 我在PHPmyadmin中有一些奇怪的错误。 ./libraries/pmd_common.php#405 count()中的警告:参数必须是实现可计数的数组或对象 回溯 ./db_designer.php#102:PMA_getLoadingPage(字符串'db_Name') 如何修复它?

  • 警告:count():参数必须是一个数组或一个对象,它在invTranslate_translated_menu_link_alter()中实现了Countable()(第55行来自\站点\所有\模块\自定义\invTranslate\invTranslate.module)。 invTranslate.module是一个自定义模块。 第55行是:

  • 我使用的是Laravel5.3,我的php版本是7.1 当我调用SoftDeletes类时,我得到了那个错误 Builder.php第1231行中的ErrorException:count():参数必须是实现可计数的数组或对象 这是我的模型 这是我的控制器 当我删除count()函数时,也会得到相同的错误 如何解决此错误

  • 我想选择最佳查找结果。我得到了一个错误:在这里,我在下面的文件中显示了HTML表单操作和DB连接,请检查它。错误消息也提到了这一部分。我使用的是PHP7.2,但遇到了一些问题 警告:count():参数必须是在第64行的D:\xammp\htdocs\search\index.php中实现 可计数的数组或对象 警告:在第37行的D:\xammp\htdocs\search\index.php中使用

  • 我面临着奇怪的案子。我在生产环境中面临一个错误,而在开发中它工作正常。 开发: Laravel 5.4.28 PHP 7.0.13 MYSQL 5.7.17 制作:Laravel 5.4.28 PHP 7.2.1 MYSQL 5.7.20 在实现代码中。我用过: 在开发中,它运行良好。但是在生产中,它给我这个错误:Count():参数必须是一个数组或一个在Builder.php中实现可数的对象(第

  • 我有这个代码返回一个错误: 参数必须是实现可数的数组或对象?