我想我的服務器上從一個文件夾移動文件到另一個使用PHP重命名功能,但我得到這個錯誤PHP重命名功能問題
警告:重命名(/家/ pramiro /public_html/new/cipri/adauga/tmp/Koala.jpg,/home/pramiro/public_html/new/images/memo/Koala.jpg)[function.rename]:/ home/pramiro/public_html中沒有這樣的文件或目錄第13行
的路徑是好的,這些文件夾存在並且要複製的文件是在TMP folder.What /new/cipri/adauga/categorie.php可能,我是做錯了什麼?
這是代碼:
$filename=$_POST['poza_conv'];
$filename=substr($filename,37);
$old_path='/home/pramiro/public_html/new/cipri/adauga/tmp/'.$filename;
$new_path=' /home/pramiro/public_html/new/images/';
switch($_POST['categorie_conv'])
{
case 'memo': $filename=$new_path.'memo/'.$filename;
break;
case 'ort_sup': $filename=$new_path.'ort_sup/'.$filename;
break;
}
rename($old_path,$filename);
可能是一個權限問題 – Randolpho 2010-09-02 18:23:50
請顯示您正在使用的代碼。 – 2010-09-02 18:23:57