在php中移动上传的文件功能无效

时间:2013-11-01 06:45:52

标签: php

以下是我将代码移动到特定目录的代码。

foreach($files as $dir_file)    //Getting Path of XML file
        {
            echo "\nDir Files: ".$dir_file."\n";

            if($dir_file != "." && $dir_file != "..")
            {
                if(strpos($dir_file,'.xml'))     
                {
                    echo "\nXML file found\n";
                    $xmlPath=$path."/".$dir_file;
                    // return ReadXML($xmlPath);
                }
                if(strpos($dir_file,'.JPG'))
                {
                    echo "\n FOund \n";
                    $ret=move_uploaded_file($dir_file, 'upload/'.$dir_file));
                     echo "\n retunr values: ".$ret;
                }  
            }

我已经检查了所有权限,它是777.但是移动上传文件功能没有将我的文件移动到特定目录。它也没有返回任何东西。我做错了什么?

2 个答案:

答案 0 :(得分:1)

如果要将文件从一个目录移动到另一个目录,则应使用copy()功能。

这是示例代码:

$source = "YOUR_SOURCE_DIRECTORY/";
$destination = "YOUR_DESTINATION_DIRECTORY/";

foreach ($files as $file) {
    if (in_array($file, array(".","..")))
        continue;

    //If file is copied successfully then mark it for deletion
    if (copy($source.$file, $destination.$file)) {
        $delete[] = $source.$file;
    }
}
//If you want to delete the copied files then include these lines
//Delete all successfully copied files
foreach($delete as $file) {
    unlink($file);
}

答案 1 :(得分:0)

  

move_uploaded_file

     

此函数检查以确保filename指定的文件是有效的上传文件 (意味着它是通过PHP的HTTP POST上传机制上传的。) 如果文件如果有效,它将被移动到目的地给出的文件名。

(强调我的。)您只能使用move_uploaded_file 移动已上传的文件,其中“已上传”表示“PHP已收到当前请求中的文件和文件目前在$_FILES超级全球“。 move_uploaded_file不能移动任何其他文件。这完全是故意的,move_uploaded_file应该保护您自己,并确保您只移动用户上传的文件。

如果您要移动任何其他未通过HTTP POST 上传的文件,请使用copyrename