专注于高品质PHP技术等信息服务于一体 [STIEMAP] [RSS]

百度提供的广告:
PHP
当前位置:首页 > 技术文档 > PHP >  > 
清如许工作室 文件批量重命名 php 版

<?php
/*
 * 清如许工作室 文件批量重命名 php 版
 * 请给文件夹Everyone可写权限
 * author:qrx date:2011-12-28
 */
$path = "d:/images/";
$dir = dir($path);
while($file = $dir->read())
{
    if("."!==$file)
    {
        if(".."!==$file)
        {
            if(preg_match("/综合网页-_澳洲牛肉_/",$file))
            {
                $new_name = preg_replace("/综合网页-_澳洲牛肉_/","1_",$file);
                rename($path.$file,$path.$new_name);
            }
        }
    }
}
$dir->close();
?>

支持正则表达式文件名称替换 完全兼容 PHP 5.3