Tagged Questions

2
votes
2answers
263 views

PHP’s USORT Callback Function Parameters

This is a really esoteric question, but I'm genuinely curious. I'm using usort for the first time today in years, and I'm particularly interested in what exactly is going on. Suppose I've got the …
0
votes
2answers
46 views

PHP Sort array by month then year

Hi, I have an array or objects with a dates which I wish to sort by. I have the following custom function that I pass to usort function sortMonths($a, $b) { if ( $a->received_date == …
0
votes
4answers
74 views

How to compare 2 strings alphabetically in PHP

What the title says. Specifically if I have $array1['name'] = 'zoo'; $array2['name'] = 'fox'; How can I determine that alphabetically $array2's name should come above $array1's?
0
votes
1answer
102 views

Why does this usort()-function fail on some versions of PHP?

We wrote some code involving usort which works fine on our development systems (PHP 5.2.8), but are experiencing a problem on our live systems (PHP 5.2.0): // Sort by distance usort($locations, …