• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Share code đổi tên file hàngloạt

Admin

Well-Known Member
Staff member
Administrator
PHP:
<?php
$mdir='dir/mralone'; //thu muc chua tap tin can doi ten
$r1='file'; //tu can doi trong ten file
$r2='Name'; //ten dc doi thanh
function mass_rename($dir,$r1,$r2) {
$opdir=opendir($dir);
while ($a=readdir($opdir)) {
if ($a=='.' or $a=='..') continue;
if (is_file($dir.'/'.$a)) {
$b=str_replace($r1,$r2,$a);
rename($dir.'/'.$a,$dir.'/'.$b); }
else {
mass_rename($dir.'/'.$a,$r1,$r2); } }
closedir($opdir);
return $dir; }
mass_rename($mdir,$r1,$r2);
echo 'Xong';
/*TUOITREIT.VN*/
?>
vd:
file_1.jpg
file_2.jpg
đổi thành:
Name_1.jpg
Name_2.jpg
 

Facebook Comments

New posts New threads New resources

Back
Top