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
何が問題になる可能性がありますか?ありがとう