Skip to content

Instantly share code, notes, and snippets.

@csalgueiro
Created January 20, 2014 08:54
Show Gist options
  • Save csalgueiro/8516997 to your computer and use it in GitHub Desktop.
Save csalgueiro/8516997 to your computer and use it in GitHub Desktop.
<?php
// Obtener el array
$myarray = glob("*.*");
// Ordenar por fecha ascendente
usort($myarray, create_function('$a,$b', 'return filemtime($a) - filemtime($b);'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment