1

我有一堆像这样命名的文件......

full-file(1).jpg
full-file(10).jpg
full-file(11).jpg
full-file(12).jpg
full-file(2).jpg
etc...

我试图找出使用 PHP 重命名所有这些文件的最有效方法,以便它们像这样重命名......

full-file0001.jpg
full-file0010.jpg
full-file0011.jpg
full-file0012.jpg
full-file0002.jpg

我已经从文件夹中读取所有文件并循环浏览它们,但不确定删除括号并使数字为 4 位且前导 0 的最佳方法。

$image_files = get_files($thumbpath);
foreach($image_files as $index=>$file) {
    echo $file;
}   
4

6 回答 6

4

使用正则表达式获取数字,然后使用零填充它sprintf()

$image_files = get_files($thumbpath);
foreach($image_files as $index=>$file) {
  // Capture \d+ into $matches[1]
  preg_match('/\((\d+)\)/', $file, $matches);
  // Pad it with %04d in sprintf()
  $newfile = sprintf("full-file%04d.jpg", $matches[1]);
} 

例子:

php > $file = 'full-file(12).jpg';
php > preg_match('/\((\d+)\)/', $file, $matches);
php > $newfile = sprintf("full-file%04d.jpg", $matches[1]);
php > echo $newfile;
// full-file0012.jpg

更新(更灵活的文件名):

为了取悦反对者,我只能假设想要更灵活的文件名,扩展正则表达式:

$image_files = get_files($thumbpath);
foreach($image_files as $index=>$file) {
  preg_match('/([^(]+)\((\d+)\)(.+)/', $file, $matches);
  $newfile = sprintf("%s%04d%s", $matches[1], $matches[2], $matches[3]);

  // And rename the file
  if (!rename($file, $newfile)) {
    echo "Could not rename $file.\n";
  }
  else echo "Successfully renamed $file to $newfile\n";
}

该模式首先匹配,直到第一个的所有内容都匹配(([^(]+)然后是数字 via (\d+),剩下的所有内容都是 via (.*)

于 2012-06-29T11:48:10.430 回答
2

还没看到有人推荐sscanf()

<?php

$files = array(
  "full-file(1).jpg",
  "full-file(10).jpg",
  "full-file(11).jpg",
  "full-file(12).jpg",
  "full-file(2).jpg",
);

foreach ($files as $file) {
  $n = sscanf($file, "full-file(%d).jpg");
  printf("full-file%04d.jpg\n", $n[0]);
}

返回:

full-file0001.jpg
full-file0010.jpg
full-file0011.jpg
full-file0012.jpg
full-file0002.jpg

当然,这仅在“完整文件”是文件的实际名称时才有效。sscanf() 不是正则表达式解析器,它只是使用 printf() 样式的格式字符串提取数据……尽管它确实做了一些比http://php.net/sscanf中记录的更高级的格式识别。如果需要处理其他文件名,可以扩展格式字符串:

<?php

$files = array(
  "this-file(1).jpg",
  "full-file(10).jpg",
  "foo(11).jpg",
  "blarg(12).jpg",
  "full-file(2).jpg",
);

foreach ($files as $file) {
  $n = sscanf($file, "%[a-z-](%d).jpg");
  printf("%s%04d.jpg\n", $n[0], $n[1]);
}

返回:

this-file0001.jpg
full-file0010.jpg
foo0011.jpg
blarg0012.jpg
full-file0002.jpg
于 2012-06-29T13:31:38.140 回答
2

您可以混合使用 REGEXP(删除括号)和字符串填充(强制四位数字)。

注意我使用替换回调在一个地方执行这两项操作。

$files = array(
    'full-file(1).jpg',
    'full-file(10).jpg',
    'full-file(11).jpg',
    'full-file(12).jpg',
    'full-file(2).jpg'
);

function pr_callback($match) {
    return str_pad($match[1], 4, '0', STR_PAD_LEFT);
}
foreach($files as $file)
    echo preg_replace_callback('/\((\d+)\)/', pr_callback, $file).'<br />';

输出:

full-file0001.jpg
full-file0010.jpg
full-file0011.jpg
full-file0012.jpg
full-file0002.jpg

于 2012-06-29T11:49:45.393 回答
1

使用代码:

preg_match('/^(.*?)\((\d+)\)(.*)$/', $name, $m);
$name = sprintf("%s%04d%s", $m[1], $m[2], $m[3]);

在这里查看并测试它。

于 2012-06-29T12:08:46.463 回答
1

您将需要str-pad()。样品很快...

编辑 1:使用str_pad和的解决方案preg_replace_callback
OBS:仅在 php5.3+ 中的匿名函数。

foreach ($image_files as $file)
{
    $o = preg_replace_callback(
            "|\((\d+)\)|", function($matches)
            {
                $r = str_pad($matches[1], 4, '0', STR_PAD_LEFT);
                return $r;
            }
            , $file);

    echo $o . "\n";
}
于 2012-06-29T11:47:13.830 回答
1

假设您的文件实际上并未称为完整文件(0000)。.jpg

<?php 
$arr = array('full-file(1).jpg',
             'full-file(10).jpg',
             'full-file(11).png',
             'full-file(12).jpg',
             'full-file(2).gif',
             'abc(12345).jpg',
             'def(99).jpg',
             'xzy-file(100).jpg');

function format_filename($matches){
  return $matches[1].sprintf("%04d",$matches[3]).'.'.$matches[5];
}
function process_array(&$value){
    $value = preg_replace_callback('/^(.*?)(\()(\d+)(\)).(jpg|png|gif)/','format_filename',$value);
}

array_walk($arr,'process_array');

print_r($arr);
/*
Array
(
    [0] => full-file0001.jpg
    [1] => full-file0010.jpg
    [2] => full-file0011.png
    [3] => full-file0012.jpg
    [4] => full-file0002.gif
    [5] => abc12345.jpg
    [6] => def0099.jpg
    [7] => xzy-file0100.jpg
)
*/
?>
于 2012-06-29T12:00:33.183 回答