Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用simplexml_load_file()功能从远程网络获取天气。
simplexml_load_file()
它在正常情况下工作正常。但是当互联网不可用时,我的脚本会等待很长时间才能响应。
我已经从嵌入式板而不是浏览器执行 php 页面。
所以我想为此抽出时间。
是否可以将连接超时simplexml_load_file()?
如果有其他选择,请告诉我。
您正在寻找名为 的 PHP 函数set_time_limit(),它允许您限制 PHP 脚本的执行时间。
set_time_limit()