Re: [PHP] array_multisort into Natural order?

2010-12-14 Thread Richard Quadling
On 13 December 2010 19:59, George Langley george.lang...@shaw.ca wrote: Hi all. Can use natsort($array1) to sort a single array of filenames into a natural alphanumeric order - 1.php, 2.php, 5.php, 10.php, 20.php, etc. But using array_multisort($array1, $array2, $array3) doesn't offer a

Re: [PHP] array_multisort into Natural order?

2010-12-14 Thread Richard Quadling
On 14 December 2010 10:50, Richard Quadling rquadl...@gmail.com wrote: On 13 December 2010 19:59, George Langley george.lang...@shaw.ca wrote: Hi all. Can use natsort($array1) to sort a single array of filenames into a natural alphanumeric order - 1.php, 2.php, 5.php, 10.php, 20.php, etc. But

Re: [PHP] array_multisort into Natural order?

2010-12-13 Thread Jim Lucas
On 12/13/2010 11:59 AM, George Langley wrote: Hi all. Can use natsort($array1) to sort a single array of filenames into a natural alphanumeric order - 1.php, 2.php, 5.php, 10.php, 20.php, etc. But using array_multisort($array1, $array2, $array3) doesn't offer a natsort option, so I end up

Re: [PHP] array_multisort into Natural order?

2010-12-13 Thread George Langley
G - Original Message - From: Jim Lucas li...@cmsws.com Date: Monday, December 13, 2010 16:00 Subject: Re: [PHP] array_multisort into Natural order? To: George Langley george.lang...@shaw.ca Cc: php-general@lists.php.net On 12/13/2010 11:59 AM, George Langley wrote: Hi all. Can use