你好我怎麼回的文件名使用的file_get_contents 這裏延伸是我的代碼:得到的file_get_contents文件名
$lien ="http://www.miawmiaw.com/coolimage.jpg";
$data = file_get_contents($lien);
$fichier = basename($lien);
$fp = fopen("products/".$fichier,"wb");
if (!$fp) exit;
fwrite($fp, $data);
fclose($fp);
所以這裏$ fichier應具備的文件名,如「coolimage.jpg」
爲什麼你想它裏面的方法?你已經知道文件名了嗎?另外,'$ path'沒有在你的代碼中定義。 – putvande