H4T3D

Life Hacks - Rename Image In Folder

Nov 13th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2. $images = glob("" . "*.jpg");
  3.  
  4. foreach($images as $image)
  5. {
  6.  
  7.   echo "<br>".$image."== >";
  8.  
  9.   rename($image,"page".$image);
  10.  
  11.   echo $image."</br>";
  12.  
  13.  
  14. }
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment