View Single Post

  #4 (permalink)  
Old 10-25-2006
frizzle
 
Posts: n/a
Default Re: Ordering array won't work?


Andy Hassall wrote:
> On 25 Oct 2006 11:06:14 -0700, "frizzle" <phpfrizzle@gmail.com> wrote:
>
> >I want to scan a dir, put the *.gif into an array, and order that (
> >01.gif, 02.gif etc),
> >and put that array into a $_session-array. (Session & Headers are
> >initiated before this code)
> >I have the code below, everything works, except for the ordering.
> >
> > $filename = preg_replace( "/\.gif$/", '', $file );
> > $_SESSION['all_pics'][$filename] = "Foobar";
> >
> >asort( $_SESSION['all_pics'] );

>
> All the values in your array are equal to "Foobar", and so asort doesn't need
> to do anything to the array to sort it.
>
> --
> Andy Hassall :: andy@andyh.co.uk :: http://www.andyh.co.uk
> http://www.andyhsoftware.co.uk/space :: disk and FTP usage analysis tool


I'm sorry, i guess i wasn't clear.
I want it ordered by it's keys ...

$_SESSION['all_pics'][$filename]
---------------------------------------^

Thanks for the fast reply.

Frizzle.

Reply With Quote