具有此:
http://forpromotional.homelinux.com:9090/WsEstrategia/imagesWeb/imagenColor?id=3551&d=1459
此URL将让您下载jpg。我想在本地保存图像。
我既无法获取文件名,也无法获取文件本身。我试过file_get_contents,复制和CURL,没有运气。我也尝试了n个解决方案,但没有结果。
有什么想法吗?
您可以像下面这样尝试,它像这样对我有用!
$url = '__LINK-TO-IMAGE__';
$dir = __DIRECTORY__; // whole path where the picture should be placed
$name = 'imageName.jpg'; // future image name
is_dir($dir) || @mkdir($dir) || die("Can't Create folder");
copy($url, $dir . DIRECTORY_SEPARATOR . $name);
我希望它能解决您的问题