在本地主机(win7,xampp)上,这工作正常:
$path = "NOTES\AA FILE - 323.txt";
$cnt = file_get_contents($path);
echo $cnt; // content of the file
但在远程服务器上 - 相同的代码 - 没有任何回显
还:
$old = "NOTES\A FOLDER";
$anew = "NOTES\PAY";
rename($old, $anew);
以上适用于本地主机,不适用于远程服务器(文件夹未重命名)
GCT1015