我编写了一个在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秒,但我仍然得到相同的错误。
我有两个选择。
答案 0 :(得分:0)
当我在脚本中使用这两行时,问题就解决了。
ini_set('max_execution_time', 300);
set_time_limit(0);