Skip to content

Instantly share code, notes, and snippets.

@wescleymatos
Created July 3, 2012 18:22
Show Gist options
  • Save wescleymatos/3041569 to your computer and use it in GitHub Desktop.
Save wescleymatos/3041569 to your computer and use it in GitHub Desktop.
gerador de nomes
<?php
function filenameGenerator($file){
preg_match("/(\w{3,4})$/i", $file, $matchs);
return sha1($file.date('YmdHis', time())).".".$matchs[1];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment