2
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."'");

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

我可以强制脚本运行到最后吗?

4

2 回答 2

3

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

小贴士:尝试寻找合适的 IDE,它会在您键入时通知您潜在的问题和错误。

于 2013-02-06T21:15:41.653 回答
0

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

try {
    /// Script with errors
} catch (Exception $e) {}
于 2013-02-06T21:15:05.770 回答