$target_dir = "a1/";
$target_file = $target_dir . basename($_FILES["myFile_cover"]["name"]);
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
$imagename = $addfirstROW['id'] . '.' . $imageFileType;
$destination = $target_dir . $imagename;
$destination2 = "a2/" . $imagename;
move_uploaded_file($_FILES["myFile_cover"]["tmp_name"], $destination);
move_uploaded_file($_FILES["myFile_cover"]["tmp_name"], $destination2);
我想同一照片上傳到不同的路徑...一個是a1一個是a2都是同一張照片這要怎麼做?就是變兩張的意思
上傳照片後我會先把圖片壓縮,再存到a1,但我想有個原始檔(未壓縮的)先到a2備份
- 2 回答
- 0 关注
- 450 浏览
添加回答
举报
0/150
提交
取消