是否有将以下名称的文件内容导入php脚本:: @file_get_contents()
无效。
/pictures/308/general/big/VILLA ROSE (22).jpg
和 / pictures / 308 / general / big / VILLA ROSE(22).jpg
答案 0 :(得分:2)
这对我有用:
$filename = "test/VILLA ROSE (22).jpg";
$x = file_get_contents($filename);
var_dump($x);
die();
检查您的绝对路径是否正确。
答案 1 :(得分:0)
您可以使用cURL
请参阅:
http://blog.unitedheroes.net/curl/
http://phpsense.com/php/php-curl-functions.html
http://devzone.zend.com/article/1081
http://coderscult.com/php/php-curl/2008/05/20/php-curl-tutorial-and-example/
特定图像用途:
http://www.bitrepository.com/download-image.html
http://www.edmondscommerce.co.uk/php/php-save-images-using-curl/
如果不了解你想要实现的目标,就很难更准确
答案 2 :(得分:-1)
我最终得到了这个,其中$ va保存图像src:
$va = explode(".com/",$va);
$sh = rawurlencode($va[1]);
$va = $va[0] . ".com/" . $sh;
$imgcont = @file_get_contents($va);