Guest User

Untitled

a guest
May 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. $files = scandir ( "whatever here" );
  2.  
  3. if ( in_array ( ".." ) )
  4. {
  5.     unset ( $files [ array_keys ( ".." ) ] );
  6. }
  7. if ( in_array ( "..." ) )
  8. {
  9.     unset ( $files [ array_keys ( "..." ) ] );
  10. }
Add Comment
Please, Sign In to add comment