Guest User

Untitled

a guest
Oct 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $file= '/files/text.txt';
  2.  
  3. $hash = md5(time().rand(11111111,99999999));
  4.  
  5. $path = pathinfo($file);
  6.  
  7. $new = $path['dirname'].DIRECTORY_SEPARATOR;
  8. $new .= $path['filename'].$hash.$path['extension'];
  9.  
  10. rename($file, $new);
Add Comment
Please, Sign In to add comment