求辅助举报

1744 经验值

我撤回这个傻B问题,,?

我想问下passport 怎么是怎么获取认证用户的信息的。谢谢啦

我刚开始用单元测试,遇到个问题整了很久解决不了,就是我怎么测试ajax请求,因为业务需要,我在生产代码中判断了一下是否是ajax请求的数据,不是的话就报错,否则继续,$request->isAjax(),这个要怎么测,我束手无策了。

是的 ,是刚才不小心删除了后面大段代码然后保存推出了 重新安装fpm就好了 很尴尬

老师好我按照视频里面进行到sudo vim /etc/php/7.1/fpm/pool.d/www.conf 之后出现的是`
; Start a new pool named 'www'.
; the variable $pool can we used in any directive and will be replaced by the
; pool name ('www' here)
[www]

; Per pool prefix
; It only applies on the following directives:
; - 'access.log'
; - 'slowlog'
; - 'listen' (unixsocket)
; - 'chroot'
; - 'chdir'
; - 'php_values'
; - 'php_admin_values'
; When not set, the global prefix (or /usr) applies instead.
; Note: This directive can also be relative to the global prefix.
; Default Value: none
;prefix = /path/to/pools/$pool

我想达到先对结果分类再进行多字段的模糊搜索,结果发现后面的搜索功能实现了但却没有分类
不知道是什么原因

 $q =  $_GET['q'];//搜索关键词
 $s =  $_GET['s'];//分类
 $res = DB::table('events')
                ->where('sort',$s)
                ->where('name','like','%'.$q.'%')
                ->orWhere('content','like','%'.$q.'%')
                ->orWhere('place','like','%'.$q.'%');
                 -> paginate(10);