小编Kar*_*ich的帖子

紧凑():未定义的变量:运算符

我收到以下错误

  (1/1) ErrorException
  compact(): Undefined variable: operator
Run Code Online (Sandbox Code Playgroud)

这是我的代码行

$postsCat = Post::whereHas('Cat', function($query) use ($sreachWord) {
    return $query->whereRaw('name REGEXP"'.sql_text_to_regx($sreachWord).'"');
})->orderBy('top','desc')
->orderBy('updated_at','desc')
->paginate(30);

Run Code Online (Sandbox Code Playgroud)

为什么会这样?是因为我的 PHP 版本 (7.3) 还是其他原因?

php laravel

25
推荐指数
3
解决办法
3万
查看次数

标签 统计

laravel ×1

php ×1