我正在使用 php 从 url 获取图像并将其复制到我的服务器,但得到一个错误,说没有这样的文件
图片示例:
http://www.google.co.in/intl/en_com/images/srpr/logo1w.png
这是我正在使用的解决方案:
//Get the file
$content = file_get_contents("http://www.google.co.in/intl/en_com/images/srpr/logo1w.png");
//Store in the filesystem.
$fp = fopen("/location/to/save/image.jpg", "w");
fwrite($fp, $content);
fclose($fp);
我收到以下错误。我做错什么了吗?
fopen(/location/to/save/image.jpg): failed to open stream: No such file or directory