4

我在用 file_get_contents('http://example.com');

我得到错误

'function.file-get-contents'>function.file-get-contents</a>]: URL file-access is disabled in the server configuration in 

我知道我必须 allow_url_fopen在 php 文件中启用。问题是我在共享服务器上我是否可以访问即 ftp 但我无法找到文件的位置

4

1 回答 1

4

不幸的是,如果allow_url_fopen被禁用,则无法启用它。只有 root 用户可以编辑php.ini控制该设置的文件。

您可以请求您的主机启用它,或者查看共享服务器上是否启用了cURL 。

于 2012-04-21T04:05:20.900 回答