我在PHP工作,我有一些没有扩展名的文件。
例子:
MYfolder
firstfile
secondfile
otherfile
等等。
我想列出文件,并给它所有“.xml”扩展名。我如何在 PHP 中做到这一点?
你可以尝试这样的事情:
<?php
if ($handle = opendir('/MYfolder')) {
while (false !== ($fileName = readdir($handle))) {
rename($fileName, $filename.'xml');
}
closedir($handle);
}
?>
在 Linux/Unix 机器上:
exec('for F in your/directory/*; do mv $F{,.xml}; done');