Skip to content

Instantly share code, notes, and snippets.

@dimak57
Created May 17, 2013 07:52
Show Gist options
  • Save dimak57/5597584 to your computer and use it in GitHub Desktop.
Save dimak57/5597584 to your computer and use it in GitHub Desktop.
Batch rename images in folder
<?php
$folder = 'img/';
$images = glob($folder . "*");
$i = 1;
foreach($images as $img) {
// echo $img . '<br>';
rename($img, $folder . $i . '.jpg');
$i++;
}
echo 'Done';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment