以下は、ファイルを特定のディレクトリに移動する私のコードです。
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 です。しかし、アップロード ファイルの移動機能で、ファイルが特定のディレクトリに移動されません。また、何も返していません。私は何を間違っていますか?