重命名 php 文件夹中的所有图像的最佳方法是什么?
What is the best way to rename all the images in a folder in php?
我是 PHP 的新手,想知道如何重命名 PHP 文件夹中的所有图片。
我有一个包含不同图片的文件夹,所有图片都命名为:
- BBBOF1_0090_A.jpg
- BBBOF1_0090_B.jpg
- BBBOF1_0090_C.jpg
- BBDOTR_0070_A.jpg
- BBDOTR_0070_B.jpg
....
我想在每张图片的名字前加一个K,把数字1,2,3,4,5...改成a,b,c,d
最后我应该是:
- KBBBOF1_0090_1.jpg
- KBBBOF1_0090_2.jpg
- KBBBOF1_0090_3.jpg
- KBBDOTR_0070_1.jpg
- KBBDOTR_0070_2.jpg
....
请问我该怎么做?我尝试使用重命名功能来添加 K,但是对于字母被数字替换的部分,我不知道该怎么做。
<?php
$path = $_POST['path'];
$dir = $path;
$allFiles = scandir($dir);
foreach($allFiles as $file) {
if (!in_array($file,array(".","..")))
{
$file = $dir.$file;
$filename = basename( $file );
$newname = "K$filename";
rename ("C:/wamp64/www/KMD/Photos/$filename", "C:/wamp64/www/KMD/new/$newname");
}
}
echo "good !";
?>
一种方法是简单地将 _A
替换为 _1
等
<?php
$files = [
'BBBOF1_0090_A.jpg',
'BBBOF1_0090_B.jpg',
'BBBOF1_0090_C.jpg',
'BBDOTR_0070_A.jpg',
'BBDOTR_0070_B.jpg'
];
$replacers = [
array_map(fn($v) => '_'.$v, range('A', 'Z')),
array_map(fn($v) => '_'.$v, range(1, 26))
];
foreach ($files as $file) {
echo 'K'.str_replace($replacers[0], $replacers[1], $file).PHP_EOL;
}
结果
KBBBOF1_0090_1.jpg
KBBBOF1_0090_2.jpg
KBBBOF1_0090_3.jpg
KBBDOTR_0070_1.jpg
KBBDOTR_0070_2.jpg
可能有一种更简单的方法可以做到这一点,但这里有一种方法:
$newname = "K$filename"; // Start from here
preg_match( '/_([A-Z])\.jpg/', $newname, $matches ); // Get last letter
$char = ord($matches[1])-ord('A')+1; // Turn letter into corresponding number (A->1, B->2, etc.)
$newname = preg_replace( '/_([A-Z])\.jpg/', "_".$char, $newname ); // Replace letter with number
我是 PHP 的新手,想知道如何重命名 PHP 文件夹中的所有图片。
我有一个包含不同图片的文件夹,所有图片都命名为:
- BBBOF1_0090_A.jpg
- BBBOF1_0090_B.jpg
- BBBOF1_0090_C.jpg
- BBDOTR_0070_A.jpg
- BBDOTR_0070_B.jpg
....
我想在每张图片的名字前加一个K,把数字1,2,3,4,5...改成a,b,c,d
最后我应该是:
- KBBBOF1_0090_1.jpg
- KBBBOF1_0090_2.jpg
- KBBBOF1_0090_3.jpg
- KBBDOTR_0070_1.jpg
- KBBDOTR_0070_2.jpg
....
请问我该怎么做?我尝试使用重命名功能来添加 K,但是对于字母被数字替换的部分,我不知道该怎么做。
<?php
$path = $_POST['path'];
$dir = $path;
$allFiles = scandir($dir);
foreach($allFiles as $file) {
if (!in_array($file,array(".","..")))
{
$file = $dir.$file;
$filename = basename( $file );
$newname = "K$filename";
rename ("C:/wamp64/www/KMD/Photos/$filename", "C:/wamp64/www/KMD/new/$newname");
}
}
echo "good !";
?>
一种方法是简单地将 _A
替换为 _1
等
<?php
$files = [
'BBBOF1_0090_A.jpg',
'BBBOF1_0090_B.jpg',
'BBBOF1_0090_C.jpg',
'BBDOTR_0070_A.jpg',
'BBDOTR_0070_B.jpg'
];
$replacers = [
array_map(fn($v) => '_'.$v, range('A', 'Z')),
array_map(fn($v) => '_'.$v, range(1, 26))
];
foreach ($files as $file) {
echo 'K'.str_replace($replacers[0], $replacers[1], $file).PHP_EOL;
}
结果
KBBBOF1_0090_1.jpg
KBBBOF1_0090_2.jpg
KBBBOF1_0090_3.jpg
KBBDOTR_0070_1.jpg
KBBDOTR_0070_2.jpg
可能有一种更简单的方法可以做到这一点,但这里有一种方法:
$newname = "K$filename"; // Start from here
preg_match( '/_([A-Z])\.jpg/', $newname, $matches ); // Get last letter
$char = ord($matches[1])-ord('A')+1; // Turn letter into corresponding number (A->1, B->2, etc.)
$newname = preg_replace( '/_([A-Z])\.jpg/', "_".$char, $newname ); // Replace letter with number