Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法更改通过html表单上传文件的默认临时路径。或者你可以理解它,因为我想设置$_FILES["uploadfile1"]['tmp_name']我的选择。
$_FILES["uploadfile1"]['tmp_name']
在您的 php.ini 更改upload_tmp_dir
upload_tmp_dir
也许您可以直接在您的代码中设置它,而无需在 php.ini 使用 ini_set('upload_tmp_dir','/new temp folder'); 但我不是 100% 确定它会起作用..
也许您可以直接在您的代码中设置它,而无需在 php.ini 使用
ini_set('upload_tmp_dir','/new temp folder');
但我不是 100% 确定它会起作用..