I'm having problems with a PHP script trying to list images alphabetically. I need this urgently and I have not much knowledge of PHP. I was trying to use scandir() but I'm not succeeding. Thanks for your help!!

Here is the code:

function listerImages($repertoire){

 $i = 0;
 $repertoireCourant = opendir('./'.$repertoire);
 while($fichierTrouve = readdir($repertoireCourant)){

  $fichierTemp = "";

  if($repertoire == '.')
   $fichierTemp = $fichierTrouve;
  else 
   $fichierTemp = $repertoire.'/'.$fichierTrouve;
  if(estUneImageValide($fichierTemp)){
   echo afficherPhoto($fichierTemp,$i);
   chmod($fichierTemp,0700);
  }

  $i++;
 }
}
link|improve this question
Is the problem that the returned list isn't sorted alphabetically? – adam May 11 '10 at 12:30
Check out glob() – DavidYell May 11 '10 at 12:31
yes the problem is that the images are not listed alphabetically – user338233 May 11 '10 at 12:39
feedback

2 Answers

Store the entries in an array so that you can sort them before outputting.

link|improve this answer
readdir() and company return files in the order in which they're stored in the directory entry, which is the order in which they were added to the directory to begin with – Marc B May 11 '10 at 17:23
feedback

I agree with Ignacio. See the Sorting Arrays section of the PHP manual.

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.