之前使用5.0和某一些版本的5.1的时候,我在onWorkerStart事件里面
// 定义应用目录 define('APP_PATH', __DIR__ . '/../application/'); // 加载框架里面的文件 require __DIR__ . '/../thinkphp/base.php';
然后在onRequest事件里面
ob_start(); think\Container::get('app')->run()->send(); $res = ob_get_contents(); ob_end_clean(); $response->end($res);
现在最新版的thinkphp5.1没有了start.php,执行应用放在index.php,而且index.php里面没有定义常量了。
我便在onWorkerStart事件里面
// 加载框架里面的文件 require __DIR__ . '/../thinkphp/base.php';
然后onRequest事件的代码不变,结果报错了。
我尝试在ob_clean()前面加上@,结果变成了在命令行终端输出了2遍index方法里面的内容,浏览器没有输出。
请问一下,我要怎么修改啊????
Amber酱呀
相关分类