Advertisement
garfield

[PHP]: Pegar extensão de arquivo

Feb 9th, 2012
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. /*
  2.             @Nome: Pegar Extensão do arquivo
  3.             @Créditos: SuYaNw Dácio
  4.  
  5.                
  6.             http://suyanwdacio.blogspot.com/
  7. */
  8.  
  9. function GetFileExtension($str)
  10. {
  11.     return substr($str, strlen($str) - 4);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement