新的 php 程序员在这里。我一直在尝试通过替换扩展名来重命名文件夹中的所有文件。
我正在使用的代码来自关于 SO 的类似问题的答案。
if ($handle = opendir('/public_html/testfolder/')) {
while (false !== ($fileName = readdir($handle))) {
$newName = str_replace(".php",".html",$fileName);
rename($fileName, $newName);
}
closedir($handle);
}
运行代码时我没有收到任何错误,但文件名没有更改。
关于为什么这不起作用的任何见解?我的权限设置应该允许。
提前致谢。
编辑:检查 rename() 的返回值时,我得到一个空白页,现在尝试使用 glob() 可能是比 opendir 更好的选择...?
编辑 2:使用下面的第二个代码片段,我可以打印 $newfiles 的内容。所以数组存在,但 str_replace + rename() 片段无法更改文件名。
$files = glob('testfolder/*');
foreach($files as $newfiles)
{
//This code doesn't work:
$change = str_replace('php','html',$newfiles);
rename($newfiles,$change);
// But printing $newfiles works fine
print_r($newfiles);
}