【PHP延迟静态捆绑LateStaticBindings_PHP教程】教程文章相关的互联网学习教程文章

php – laravel paginate在使用select case和parameter binding时【代码】

Laravel版本:5.5 PHP版本:7 嗨,我想执行这个查询:select (case when(title like 'my-keyword') then 1when(description like 'my-keyword') then 2) as ordering from products where id > 10;当我通过查询生成器执行此操作时:$products = DB::table('products')->select(DB::raw('(case when(title like '?') then 1when(description like '?') then 2) as ordering'))->where('id', '>', 10)->setBinding(['my-keyword', 'my...