嗨,我正在使用下面的脚本将来自另一个域的图像保存到我自己的域中。
//get image name and extension
$img = 'http://otherdomain.com/image/123.jpg';
$getname = explode('/', $img);
$thumbname = $getname[count($getname) - 1];
//save the image file
$file = file_get_contents($img);
$path = 'thumbs/'+ $thumbname;
file_put_contents($path, $file);
但我不能让它工作。$path 导致123
但不是123.jpg
(我需要)。我在做文件获取内容和文件放置内容吗?