我试图将表单中的选定文件表单复制到php中的新文件夹。出于某种原因,我似乎无法弄清楚为什么我的代码无法正常工作。有没有办法通过POST方法做到这一点..我基本上只想复制文件,如果有通过Post方法从表格表中选择的文件。下面我的代码片段...感谢!!
<form name="bm_table" action="getsounds.php" method="post">
<table id="display_user_urls" >
<?php
$dir = dir('/upload_sounds');
echo "<tr>
<td><strong>Mp3 Files</strong></td>";
echo "<td><strong>Add Selected Mp3 To Members Page</strong></td>
</tr>";
while(false !== ($file = $dir->read())){
if($file != "." && $file !=".."){
$file1 = basename($file,".mp3");
echo "<tr>
<td><a href=\"".$file1."\">".htmlspecialchars($file1)."</a></td>
<td><input type=\"checkbox\" name=\"add[]\"value=\"".$file1."\"/></td>
</tr>";
}
}
echo "<input id=\"add_mp3\" type=\"submit\" name=\"add_submit\" value=\"Click Here To Add\"/>";
$dir->close();
?>
</table>
</form>
以下是帖子方法页面“getsounds.php”
$files = scandir("uploads\\admin_uploads\\upload_sounds\\{$_POST['add'][0]}");
$source = "uploads\\admin_uploads\\upload_sounds\\";
$destination = "new_uploads48\\";
foreach($files as $file){
if(in_array($file,array(".","..")))continue;
if(copy($source.$file,$destination.$file)){
echo "Success";
}
}
答案 0 :(得分:0)
它说。
警告:opendir(uploads \ admin_uploads \ upload_sounds \ mymp3):无法打开dir:C中没有这样的文件或目录:...
所以我认为问题出在你所给出的道路上。
尝试其中一种。
$dir = dir('.\uploads\admin_uploads\upload_sounds');
,$dir = dir('\Myproject\index\uploads\admin_uploads\upload_sounds');
,$dir = dir('..\uploads\admin_uploads\upload_sounds');
我认为它是因为你的路径指向基础,你应该尝试相对路径或真实并纠正绝对路径。