I have a function that takes the name of files from a folder, sorts them by date and then creates a link to the file. However, this only works if the actual filename has spaces between the words. If I add hyphens into the filename, the order by date doesn't work correctly.

The filenames that work are:

Presentation January 2011.pdf

Presentation August 2010.pdf

Presentation May 2010.pdf

If I add hyphens to the filenames the order breaks:

Presentation-January-2011.pdf

Presentation-August-2010.pdf

Presentation-May-2010.pdf

How can I alter the preg_match() so that it takes into account hyphens? Here is my code:

$linkdir="documents/presentations";
$dir=opendir("documents/presentations");
$files=array();

while (($file=readdir($dir)) !== false)
{
   if ($file != "." and $file != ".." and $file != "index.php")
   {
    array_push($files, $file);
   }
}

closedir($dir);

function date_sort_desc($a, $b)
{
  preg_match('/\w+ \d{4}/', $a, $matches_a);
  preg_match('/\w+ \d{4}/', $b, $matches_b);
  $timestamp_a = strtotime($matches_a[0]);
  $timestamp_b = strtotime($matches_b[0]);
  if ($timestamp_a == $timestamp_b) return 0;
  return $timestamp_a < $timestamp_b;
}

usort($files, 'date_sort_desc');

foreach ($files as $file){
    $name = substr($file, 0, strrpos($file, '.'));
    $filename = str_replace(" ", "%20", $file);
    $name = str_replace("-", " ", $file);
    print "<li><a href='/$linkdir/$filename' rel='external'>$name</a></li>";
}

Any help on this would be much appreciated.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

'/\w+ \d{4}/' looks for a word, a blank and four digits; '/\w+[ -]\d{4}/' should look for a blank or a hyphen between the word and the digits.

link|improve this answer
Superstar - thank you very much! – Jonathan Apr 7 '11 at 9:02
feedback

The following two lines:

preg_match('/\w+ \d{4}/', $a, $matches_a);
preg_match('/\w+ \d{4}/', $b, $matches_b);

They match a number of 'word-like characters' (\w), a space and then four digits (\d).

You could either change the regular expression to accept a space or a dash: '[ -]' or '( |-)' instead of the space ''. This should not break the strtotime() function calls.

If it does, you could change date_sort_desc() by adding the following at the top:

$a = str_replace("-", " ", $a);
$b = str_replace("-", " ", $b);

In that case, you wouldn't need to change the regular expressions.

link|improve this answer
+1 because RikkusRukkus addresses possible problems with strtotime(). But the remedy should be applied before the match call or the pattern must be changed too. – Ekkehard.Horner Apr 7 '11 at 9:15
feedback

Then what happens when a different character is used, you're constantly updating your code. Why not use something like /\w+\W?\d{4}/ to capture any non-alphanumeric character that MIGHT show up?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.