0
在斯利姆3,這裏是在應用程序中注入的自定義錯誤處理程序示例:苗條3激活的自定義錯誤處理程序
$container = new \Slim\Container();
$container['customError'] = function($c){
return function ($request, $response) use ($c) {
$output = ['success'=>0, 'error'=>"Custom Error Output."];
return $c['response']
->withStatus(400)
->withHeader('Content-Type', 'application/json')
->write(json_encode($output));
};
};
$app = new \Slim\App($container);
我的問題是,我怎麼觸發這個自定義錯誤?