错误后继续PHP脚本?

时间:2013-02-06 21:10:48

标签: php

mysql_query("SELECT active...  WHERE account = '".$account."'")

x = 1;
where(x<10){
    if($active == 1){
        mysql_query("UPDATE scriptstatus SET active = '0' WHERE account = '".$account."'");

        /// Script with errors

        x++;
    }
}
mysql_query("UPDATE scriptstatus SET active = '1' WHERE account = '".$account."'");

我有一个脚本,但它有错误,这使脚本停止。

我可以强制脚本运行直到结束吗?

2 个答案:

答案 0 :(得分:3)

不,这是不可能的,也不是一个好主意。 PHP脚本在出错时终止。 真正的解决方案是修复错误。

侧面提示:尝试查看适当的IDE,在您键入时通知您潜在的问题和错误。

答案 1 :(得分:0)

使用try catch: http://php.net/manual/en/language.exceptions.php

try {
    /// Script with errors
} catch (Exception $e) {}