在PHP控制器中处理异常通常有以下几种方法:
try {
// 代码可能抛出异常的地方
} catch (Exception $e) {
// 处理异常的代码
echo 'Caught exception: ' . $e->getMessage();
}
class CustomException extends Exception {}
try {
throw new CustomException('Something went wrong');
} catch (CustomException $e) {
echo 'Caught custom exception: ' . $e->getMessage();
}
set_exception_handler(function($e) {
echo 'Global exception handler: ' . $e->getMessage();
});
无论使用哪种方法处理异常,在控制器中都应该注意及时捕获和处理异常,以确保应用程序的稳定性和安全性。