30秒的时间超出错误?文件获取内容

Yus*_*ali 2 php datetime curl

我有这个错误:

   Fatal error: Maximum execution time of 30 seconds exceeded in C:\AppServ\www\facebook\classes\burccek.class.php on line 56
Run Code Online (Sandbox Code Playgroud)

(我正在使用file_get_contents)

(在这个程序中我将file_get_contents数据发布到facebook用户墙(offline_access))

lau*_*ent 6

这意味着file_get_contents操作需要更多的时间来完成PHP的最大执行时间.如果您需要更长的时间,请在文件顶部添加以下行:set_time_limit($seconds);

但是30秒似乎已经很长时间了,所以你的应用程序可能还有其他一些问题.