gpt4 book ai didi

PHP MySQL 错误处理

转载 作者:可可西里 更新时间:2023-11-01 07:46:08 25 4
gpt4 key购买 nike

简单的问题(我希望)。

目前我正在使用以下代码:

mysql_query($sql) or header("Location: /error");

为了防止脚本的其余部分运行,我需要添加 exit;die()。有没有办法使用上面的内联方法来做到这一点,或者我需要使用:

$result = mysql_query($sql);
if (!result) {
header("Location: /error");
exit();
}

谢谢

最佳答案

怎么样:

function customDie($location) {
header('Location: ' . $location);
exit();
}


mysql_query($sql) or customDie("/error");

关于PHP MySQL 错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4125559/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com