当我在浏览器中打开此链接时,它可以正常工作
但是当我这样做时
$link = 'http://www.bama.ir/خريد-خودرو/?ac411129-3-0-0-0-0-0-900000000-1/کادنزا-كیا';
echo file_get_contents($link);
我明白了
( ! ) Warning: file_get_contents(http://www.bama.ir/خريد-خودرو/?ac411129-3-0-0-0-0-0-900000000-1/کادنزا-كیا):
failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in
我认为这是因为链接末尾的字符(如果我用拉丁字符替换它们就可以了)
file_get_contents 是否有类似 urlencode 的功能?
- - - - - - - - - 编辑 - - - - - - - - - - - - -
$link = urlencode('http://www.bama.ir/خريد-خودرو/?ac411129-3-0-0-0-0-0-900000000-1/کادنزا-كیا');
echo file_get_contents("$link");
结果
Warning: file_get_contents(http%3A%2F%2Fwww.bama.ir%2F%D8%AE%D8%B1%D9%8A%D8%AF-%D8%AE%D9%88%D8%AF%D8%B1%D9%88%2F%3Fac411129-3-0-0-0-0-0-900000000-1%2F%DA%A9%D8%A7%D8%AF%D9%86%D8%B2%D8%A7-%D9%83%DB%8C%D8%A7): failed to open stream: No such file or directory in C:\wamp\www\index.php on line 12