[PHP] Min and max of array

2003-03-07 Thread Liam Gibbs
Is there a way to find the minimum and maximum values of an array? min() and max() don't take arrays.

Re: [PHP] Min and max of array

2003-03-07 Thread Kevin Stone
- Original Message - From: Liam Gibbs [EMAIL PROTECTED] To: php list [EMAIL PROTECTED] Sent: Friday, March 07, 2003 12:07 PM Subject: [PHP] Min and max of array Is there a way to find the minimum and maximum values of an array? min() and max() don't take arrays

Re: [PHP] Min and max of array

2003-03-07 Thread Liam Gibbs
you can sort it and get the values. I would, but I need the array in the same order. I can't sort it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Min and max of array

2003-03-07 Thread Jim Lucas
] Min and max of array you can sort it and get the values. I would, but I need the array in the same order. I can't sort it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net

Re: [PHP] Min and max of array

2003-03-07 Thread Kevin Stone
- Original Message - From: Liam Gibbs [EMAIL PROTECTED] To: php list [EMAIL PROTECTED] Sent: Friday, March 07, 2003 12:24 PM Subject: Re: [PHP] Min and max of array you can sort it and get the values. I would, but I need the array in the same order. I can't sort