如果我的 API 出现问题,我想返回一个 http 500 请求。
$app = new Slim();
$app->halt(500);
它仍然返回 http 200。
如果我运行此代码:
$status = $app->response()->status();
echo $status; //Here it is 200
$status = $app->response()->status(500);
echo $status; //Here it is 500
它仍然给我一个 http 200