simplexml_load_file,curl和file_get_contents在服务器上不起作用

时间:2014-05-06 13:08:43

标签: php json curl simplexml file-get-contents

所以我有一个让我疯狂的问题:(当我在本地机器上使用 simplexml_load_file,curl或file_get 时它运行正常但是当我在服务器上移动时它不起作用我得到了超时错误,

这是我的简单代码:

$res = simplexml_load_file(urlencode($url));

所以,如果有人知道我会非常感激:)

1 个答案:

答案 0 :(得分:0)

您的服务器可能已allow_url_fopen设置为关闭。编辑php.ini文件,找到行

allow_url_fopen = Off

并将其更改为

allow_url_fopen = On