sử dụng php try catch
, xử lý Ngoại lệ của nó được sử dụng để thay đổi quy trình thực thi mã bình thường nếu xảy ra lỗi được chỉ định.
try {
$con = mysqli_connect("localhost","my_user","my_password","my_db");
if(!$conn) {
throw new Exception('Failed');
}
} catch(Exception $e) {
echo 'Server error. Please try again some time.';
die;
}