我正在使用 php file_get_contents来获取网页。
当我从本地主机执行此操作时,一切正常。
但是,一旦我从共享主机中执行此操作,我就会收到以下错误消息:
ERROR
Access Denied
Access Denied by security policy
您网络的安全策略此时不允许您的请求。如果您认为这不正确,请联系您的管理员。
这是我回来的标题
array(4) { [0]=> string(22) "HTTP/1.0 403 Forbidden" [1]=> string(23)
"Content-Type: text/html" [2]=> string(17) "Connection: close" [3]=> string(19)
"Content-Length: 353" }
代码很简单
$page = file_get_contents('http://www.somedomain.com/');
如果我尝试当前页面,它可以工作
$page = file_get_contents('http://stackoverflow.com/questions/10565054/error-access-denied-when-using-php-file-get-content');
有任何想法吗 ?