发生错误时如何重新运行脚本?

How to rerun a the script when an error occured?

我编写了一个脚本来搜索 xml 文件中的值。我通过以下代码在线检索此文件

# Reads entire file into a string
    $result = file_get_contents($xml_link);
    # Returns the xml string into an object
    $xml = simplexml_load_string($result);

但是 xml 有些事情很大,结果我收到以下错误 致命错误:超过 30 秒的最长执行时间。 我已将 ini.php 文件调整为 max_exucution 时间设置为 360 秒,但我仍然遇到相同的错误。

我有两个选择。

当我在脚本中使用这两行时,问题就解决了。

ini_set('max_execution_time', 300);
set_time_limit(0);