To view the terms under which this email is distributed, please go to 
http://disclaimer.leedsmet.ac.uk/email.htm



On 23 January 2005 22:37, Jeffery Fernandez wrote:

> Kurt Yoder wrote:
> 
> > Use usort (stealing from php docs):
> > 
> > 
> > 
> > function cmp($a['score'], $b['score'])

That should be:

    function cmp($a, $b)

> > {
> >    if ($a['score'] == $b['score']) {
> >        return 0;
> >    }
> >    return ($a['score'] < $b['score']) ? -1 : 1;
> > }
> > 
> > $data = array(...);
> > 
> > usort($data, "cmp");
> > 
> > 
> This won't work for me as I have 500+ records to sort based on the
> score key..

Sure it will, given the correction above.

Cheers!

Mike

---------------------------------------------------------------------
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning & Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Headingley Campus, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730      Fax:  +44 113 283 3211 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to