Skip to content

Instantly share code, notes, and snippets.

@jgdoncel
Created December 17, 2013 10:43
Show Gist options
  • Select an option

  • Save jgdoncel/91cdf76acfb8e7596464 to your computer and use it in GitHub Desktop.

Select an option

Save jgdoncel/91cdf76acfb8e7596464 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