我想使用PHP rename()
函數將文件從one directory
移動到another directory
。但該功能不起作用。每次顯示Not done
。你的建議請。PHP重命名功能不起作用
這裏是我的代碼
<?php
error_reporting(1);
error_reporting('On');
include 'includes/config.php'; // database configuration file
$site_path = "http://www.website.com/";
$file_name = "images800466507.jpg";
$currentPath = 'TempImages/'.$file_name; // (file permission : 777)
$newPath = 'ImagesNew/'.$file_name; // (file permission : 755)
if(rename($site_path.$currentPath , $site_path.$newPath))
echo 'done';
else
echo 'not done';
?>
您應該使用本地路徑。 –
本地路徑意味着..你在說絕對路徑嗎? '/var/www/website.com/public_html/' –
本地路徑表示您的項目文件夾路徑。不在線網站名稱 –