這篇文章主要介紹ThinkPHP5.0多個文件上傳后找不到臨時文件的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)建站10多年成都企業(yè)網(wǎng)站定制服務(wù);為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁設(shè)計及高端網(wǎng)站定制服務(wù),成都企業(yè)網(wǎng)站定制及推廣,對攪拌罐車等多個方面擁有豐富的網(wǎng)站運維經(jīng)驗的網(wǎng)站建設(shè)公司。這是修改之前的代碼
if(!empty($_FILES)){ if(!empty($_FILES['org_positive'])){ $org_positive = request()->file('org_positive'); if($org_positive){ $info = $org_positive->move(ROOT_PATH . 'uploads'); $positive_path="/uploads/".$info->getSaveName(); }else{ $positive_path=""; } } if(!empty($_FILES['org_reverse'])){ $org_reverse = request()->file('org_reverse'); if($org_reverse){ $info1=$org_reverse->move(ROOT_PATH . 'uploads'); $reverse_path="/uploads/".$info1->getSaveName(); }else{ $reverse_path=""; } } if(!empty($_FILES['org_license'])){ $org_license = request()->file('org_license'); if($org_license){ $info2=$org_license->move(ROOT_PATH . 'uploads'); $license_path="/uploads/".$info2->getSaveName(); }else{ $license_path=""; } } }
在處理$_FILES第二個元素的時候出現(xiàn)了以下錯誤
這是改良之后的代碼
if(!empty($_FILES)){ if(!empty($_FILES['org_positive'])){ $org_positive = request()->file('org_positive'); } if(!empty($_FILES['org_reverse'])){ $org_reverse = request()->file('org_reverse'); } if(!empty($_FILES['org_license'])){ $org_license = request()->file('org_license'); } if($org_positive){ $info = $org_positive->move(ROOT_PATH . 'uploads'); $positive_path="/uploads/".$info->getSaveName(); }else{ $positive_path=""; } if($org_reverse){ $info1=$org_reverse->move(ROOT_PATH . 'uploads'); $reverse_path="/uploads/".$info1->getSaveName(); }else{ $reverse_path=""; } if($org_license){ $info2=$org_license->move(ROOT_PATH . 'uploads'); $license_path="/uploads/".$info2->getSaveName(); }else{ $license_path=""; } }
以上是“ThinkPHP5.0多個文件上傳后找不到臨時文件的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!