Ash www.ashleysheridan.co.uk |
--- Begin Message ---
- To: Tom Shaw <php.coder@xxxxxxxxx>
- Subject: Re: Sorting Arrays
- From: Micah Gersten <micah@xxxxxxxxxxx>
- Date: Fri, 22 Aug 2008 14:18:53 -0500
- Cc: php-general@xxxxxxxxxxxxx
- Delivery-date: Fri, 22 Aug 2008 20:19:13 +0100
- Envelope-to: ash@xxxxxxxxxxxxxxxxxxxx
- In-reply-to: <000901c90493$5cbd8e40$1638aac0$@coder@tx.rr.com>
- User-agent: Thunderbird 2.0.0.16 (X11/20080724)
I believe you'll need a custom sorting function for this. http://us.php.net/usort Thank you, Micah Gersten onShore Networks Internal Developer http://www.onshore.com Tom Shaw wrote: > I'm having a problem sorting my array and wondered if anybody had experience > sorting arrays by their values. What I need to do is resort the array below > > where the most expensive product shipping price starts at position zero no > matter how big the array is. > > > > array(2) { > > [0] => array(48) { > > ["product_id"] => string(2) "34" > > ["product_name"] => string(29) "Bears Ball Cap" > > ["product_ordered_size"] => string(5) "ADULT" > > ["product_sales_price"] => string(8) "11.90" > > ["product_shipping_price"] => string(4) "7.85" > > ["product_shipping_extra"] => string(4) "0.06" > > } > > [1] => array(48) { > > ["product_id"] => string(2) "37" > > ["product_name"] => string(21) "Baldwin L Grand Piano" > > ["product_ordered_size"] => string(5) "Grand" > > ["product_sales_price"] => string(8) "11671.90" > > ["product_shipping_price"] => string(6) "500.00" > > ["product_shipping_extra"] => string(6) "450.00" > > } > > > > Thanks > > > > php.coder@xxxxxxxxx > > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php