$_FILE
CLI 模式不支持 move_uploaded_file() 函数,因此 $_FILE 内容会和默认的不一样,需要手动处理。参考 http://doc.workerman.net/web-server.html
报错
由于 CLI 模式不支持 header() 函数,需要使用 WorkerMan 自带的 Http::header() 代替。我的做法是在
app/Exceptions/Handler.php
render() 函数加上 Http::header()
Authentiate 中间件
默认的 app/Http/Middleware/Authentiate.php 出错会返回
1 | return response('Unauthorized.', 401); |
改成
1 | abort(401); |
即可
Auth Guard 保留登录信息
如果使用了 Auth 中间件,程序会一直保留登录信息,不管谁登录都返回第一个用户。我的做法是复制默认的 RequestGuard.php 到
app/Services/Auth/RequestGuard.php
并增加函数
1 | public function logout() |
然后在
app/Providers/AuthServiceProvider.php
里增加这个 guard
1 | public function boot() |
然后修改
app/Http/Middleware/Authenticate.php
1 | public function handle($request, Closure $next, $guard = null) |
最后在每次请求完后执行一次
1 | app('auth')->logout(); |
清理登录信息
lumen和event扩展冲突
如果系统里安装了 event 扩展,Lumen 在使用 artisan 或者 bootstrap/app.php 里打开了 $app->withFacades(),那么系统会报
Cannot declare class Event, because the name is already in use
Laravel 不知道会不会报错,估计也会。
这时候在 Console/Kernel.php 里加入
1 | protected $aliases = false; |
就可以了。代价是不能使用 Facades 了。