我1353683037.jpg
在 tmp 文件夹中有一个文件,如下所示:
C:\xampp\htdocs\ci_project\public\images\tmp\1353683037.jpg
我需要将此文件重命名为:
C:\xampp\htdocs\ci_project\public\images\main\1353683037.jpg
为此,我做了以下工作:
$file = '1353683037.jpg';
$dir = './public/images/';
rename($dir.'tmp\'. $file, $dir.'main\'. $file);
我收到来自服务器的以下回复:
A PHP Error was encountered
Severity: Warning
Message: rename(./public/images/tmp/1353683037.jpg,../public/images/main/1353683037.jpg) [function.rename]: The system cannot find the path specified. (code: 3)
Filename: controllers/test.php
Line Number: 1
可能是什么问题?谢谢