嗨,我使用下面的腳本將圖像從另一個域保存到我自己的域。試圖保存圖像的名稱完好無損php
//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);
,但我不能得到這個工作。 $路徑導致123
但不是123.jpg
(我需要)。 和我在做文件獲取內容和文件把內容正確嗎?
也許您使用帶有「隱藏已知文件擴展名」選項的窗口。你的腳本對我完全沒問題。 – 2012-04-14 08:36:55