Skip to content

Instantly share code, notes, and snippets.

@createproblem
Created September 19, 2013 09:46
Show Gist options
  • Save createproblem/6621289 to your computer and use it in GitHub Desktop.
Save createproblem/6621289 to your computer and use it in GitHub Desktop.
PHP Sorting tests
<?php
$files = scandir('.', SCANDIR_SORT_DESCENDING);
var_dump($files);
sort($files, SORT_REGULAR);
var_dump($files);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment