Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $types = array( 'png', 'jpg', 'jpeg', 'gif' );
  2.  
  3. if ( $handle = opendir('pasta_desejada') )
  4. {
  5. while ( $entry = readdir( $handle ) )
  6. {
  7. $ext = strtolower( pathinfo( $entry, PATHINFO_EXTENSION) );
  8.  
  9. if( in_array( $ext, $types ) ) {
  10. echo '<img src="pasta-relativa-por-http/', $entry,'">';
  11. }
  12. }
  13.  
  14. closedir($handle);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement