为了账号安全,请及时绑定邮箱和手机立即绑定

php 上傳一張照片 到兩個路徑?

php 上傳一張照片 到兩個路徑?

PHP
子衿沉夜 2019-03-05 09:30:25
$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 回答

?
HUWWW

TA贡献1874条经验 获得超12个赞

你第一次用move_uploaded_file之后,临时文件就不存在了,第二次就不能再执行了。

第一次移动后,第二个路径可以从第一个路径获取。

move_uploaded_file($_FILES["myFile_cover"]["tmp_name"], $destination);
file_put_contents($destination2,file_get_contents($destination));
查看完整回答
反对 回复 2019-03-18
?
慕桂英546537

TA贡献1848条经验 获得超10个赞

copy

查看完整回答
反对 回复 2019-03-18
  • 2 回答
  • 0 关注
  • 450 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信