标签: php
如何通过PHP发布到服务器的所有文件的临时名称?
答案 0 :(得分:1)
foreach($_FILES as $file){ $tmp[] = $file['tmp_name']; } print_r($tmp);