为什么有些时候file_get_contents不能用于文件url?

时间:2015-07-18 12:32:38

标签: php

当我在public_html中的php文件中使用此代码时不能正常工作:

$badwords = explode("\n", file_get_contents('bad.txt'));

但是当我添加我的网站网址时,这段代码工作得很好:

$badwords = explode("\n", file_get_contents('http://example.com/bad.txt'));

问题是什么?

请帮帮我。

谢谢。

1 个答案:

答案 0 :(得分:0)

使用file_get_contents()函数可以对其他站点进行数据抓取,因此大多数时候服务器不允许使用此函数,也可能会出现其他错误。