Tagged Questions

6
votes
2answers
388 views

PHP — usort is modifying contents of objects in array, how do I prevent this?

I am using usort with a user comparison function to sort an array of objects. After running usort on an array of these objects, I've found that some of the values of the objects have changed along ...
5
votes
4answers
138 views

Pass extra parameters to usort callback

I have the following functions. Wordpress functions, but this is really a PHP question. They sort my $term objects according to the artist_lastname property in each object's metadata. I want to pass ...
5
votes
4answers
268 views

How do I sort a PHP array by an element nested inside?

I have an array like the following: Array ( [0] => Array ( 'name' => "Friday" 'weight' => 6 ) [1] => Array ( 'name' => "Monday" ...
5
votes
2answers
2k 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 ...
4
votes
6answers
1k views

Sorting multidimensional array in PHP

I am currently creating a sorting method that consists of values from an mysql query. Here's a brief view of the array: Array ( [0] => Array ( ['id'] = ...
3
votes
3answers
87 views

How should I sort this array by key with usort?

I think I might have read every usort article on StackOverflow, but I can't work out this one. It might be that usort is not the tool I need? Here's a bit of the array that I'm working with (I have it ...
3
votes
1answer
74 views

Sorting a Multidimensional Array in PHP

My array looks like this: Array ( [0] => Array ( [0] => 1 [1] => 6 [2] => 4 [3] => 5 ) [1] => Array ( [0] => 272.05 ...
3
votes
6answers
132 views

Sorting an array by a certain key

I have the following array: Array ( [Places] => Array ( [public] => 0 [entities] => Array ( ... ) ...
3
votes
4answers
1k 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?
2
votes
3answers
191 views

PHP: weird usort bug

Everything works fine on my local machine. But when uploading this piece of code to my live server I'm getting a weird warning ... usort($modules, array('util_SortItem', 'ByOrder')); Causes this ...
2
votes
1answer
198 views

Using PHP usort with conditional results

Long story short, I need to sort an array of objects using usort, and I need to tell usort which fields in the objects to sort by. The obvious solution is to create tens of separate usort sorting ...
2
votes
4answers
263 views

Sort an associative array in php with multiple condition

Consider following array $details = array( array('lname'=>'A', 'fname'=>'P','membkey'=>700,'head'=>'y'), array('lname'=>'B', 'fname'=>'Q','membkey'=>540,'head'=>'n'), ...
2
votes
2answers
394 views

PHP anonymous functions scope question

I'm trying to sort an array of objects by a common property, however I cannot get my $property parameter to register in the inner function (I can use it in the outer one OK). The way I read the ...
2
votes
1answer
763 views

usort - more parameters

Hallo, how can I pass more parameters to usort? I have different functions, which are very similar in structure, I want to have just one function: <?php $arr = array( array('number' ...
1
vote
2answers
36 views

How does this callback example (php manual) work?

In the example below from http://php.net/manual/en/function.usort.php, a callback function is called. function cmp($a, $b) { if ($a == $b) { return 0; } return ($a < $b) ? -1 : ...
1
vote
3answers
31 views

php usort error message

I have a class called Link with a function called Compare. When I runt this code I keep getting an error message foreach($filearray as $k=>$v) { $website = new Link($v); $links[] = ...
1
vote
2answers
35 views

Sort array with usort

I have an array that contain the values north, east, south or west. For example I got an array with the values in this order: south, west and north. Now I would like to sort the array like north, ...
1
vote
1answer
51 views

Sort PHP array by multiple values within subarrays

So I'm not exactly sure if the title fits it best, but here's what the array looks like: array ( [0] => array ( [category] => 'Value_1' [date] => ...
1
vote
1answer
30 views

usort returning unpredicable results

I have an array of objects returned from a database. A print_r on the unsorted array looks like this: Array ( [0] => stdClass Object ( [nid] => 53162 [title] ...
1
vote
1answer
53 views

Sort multi-dimensional array BUT do not reassign top-level keys

array $tagHolder[$row['id']] = array( "name" => $row['name'], "primary" => $row['primary'], "child" => $row['child'], "order" => $row['order'] ); ...
1
vote
3answers
299 views

How to sort JSON data using PHP & usort?

How might I sort the following using PHP? (where wed_2_open comes after wed_1_close) I have the following JSON data: "hours": { "mon_1_open": 406800, "mon_1_close": 437400, "tue_1_open": ...
1
vote
2answers
189 views

Using usort() with an object that implements ArrayIterator

I have this class: class ResultSet implements ArrayAccess, Countable, Iterator { /// Rest of implementation ... } I'm running into a problem using usort() and passing my object as the ...
1
vote
2answers
222 views

Sort multi-dimensional array with usort

The following usort function does not always give the right result since it will only "push" up or down one position relative to the compared item. Thus when performing the sort multiple times the ...
1
vote
1answer
131 views

usort overwriting head or tail of array?

I don't fully understand how PHP allocates, so I don't know if I have made an error, or if this is a bug. usort() here is intermittently zeroing out the head or tail of the array. class foo { ...
1
vote
2answers
221 views

Possible to pass a closure to usort in PHP?

I have an array sorting function as follows: public function sortAscending($accounts) { function ascending($accountA, $accountB) { if ($accountA['AmountUntilNextTarget'] == ...
1
vote
3answers
235 views

Question about PHP usort function

i've got a PHP script where i rearange a multidimensional array with the use of the usort()-function. this is a sample array (print_r-output) of array $arr Array ( [3] => Array ( ...
1
vote
2answers
999 views

PHP Sort array by month then year

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
2answers
20 views

Sorting an array using usort and a dynamic generated function

I am using php function usort to sort an array. The custom php function must be generated because its dynamic $intCompareField = 2; $functSort = function($a, $b) { return ($a[$intCompareField] > ...
0
votes
1answer
31 views

Usort sorting function. Why this doesn't work?

I'm in the need of sorting an array according to another one, I've asked here yesterday and got some enlightning answers: Sort an array by using the same order of another one. Now I'm trying to ...
0
votes
3answers
49 views

how does usort work?

I have looked at the php documentation, tutorials online and none of them how usort is actually working. I have an example i was playing with below. $data = array( array('msg' => 'some ...
0
votes
2answers
42 views

php sort value ranges

I have a array of strings: 0 - 5 50-100 10-50 150-250 100-150 Now I want to automatically sort these to: 0-5 10-50 50-100 100-150 150-250 How would I go about this?
0
votes
3answers
45 views

Using usort with simplexml

I'm having a problem where none of my values are ending up in the right order. $xml = file_get_contents('admin/people.xml'); $x = new SimpleXMLElement($xml); ...
0
votes
1answer
45 views

Rename all files in folder

I am having my iPhone app delete a selected image off of my database, after it deletes the image i want, it needs to rename all of the other images left in the folder. So say my folder has 3 images: ...
0
votes
1answer
74 views

usort: how I can sort by multiple data types? [closed]

Possible Duplicate: Sort multidimensional array by multiple keys I want know how I can usort an array of arrays by differents data types. For instance, I have this data: priority | title 2 ...
0
votes
1answer
40 views

Help with user defined sort function

function sort_searches($a, $b) { return ( (isset($b['Class_ID']) && !isset($a['Class_ID'])) || ($b['Results'] && !$a['Results']) || ...
0
votes
1answer
82 views

PHP additional parameters to usort

The following code lays within a function which itself lays within a class. Its purpose is to avoid having one sorting function per $filter value : $GLOBAL['filter'] = $filter; usort($this->data, ...
0
votes
2answers
82 views

usort changing Array's order

I have a usort function with a single line: return 0. I tried to use it on an Array of stdClass objects, and it changes their order, how is that possible?
0
votes
1answer
74 views

PHP: What causes usort() to turn array into 1?

Can't get why usort() turns array into 1 Here is code of my sorting callback method in SomeClass protected $_sortKey = ''; public function setSortKey($keyname) { $this->_sortKey = $keyname; ...
0
votes
1answer
279 views

PHP usort won't sort

This is a sample of the array of elemnts to sort: $items = array 0 => object(stdClass)[8] public 'id' => string '110' (length=3) public 'brand_id' => ...
0
votes
3answers
168 views

Correct preg_match code to sort filenames by date?

I have a function that takes the name of files from a folder, sorts them by date and then creates a link to the file. However, this only works if the actual filename has spaces between the words. If I ...
0
votes
2answers
219 views

PHP group and sort an array of objects based on 2 parameters

I have an array of objects which I want to sort based on one property, and then kind of 'group together' based on another property. In the example below, I would like them sorted based on $sequence, ...
0
votes
2answers
237 views

Help me sort this php array using usort()

I have a data structure that looks like Array ( [0] => Array ( [0] => something [1] => 1296986500 ) [1] => Array ( [0] => something else ...
0
votes
2answers
197 views

How perform USort() on an Array of Objects class definition as a method?

class Contact{ public $name; public $bgcolor; public $lgcolor; public $email; public $element; public function __construct($name, $bgcolor, $lgcolor, ...
0
votes
1answer
143 views

Reorder a PHP array with usort and strcomp: bug

Using usort and strcomp together to order an array by one of its keys has an odd effect: it returns my array with fewer items in it than I put in. The array in my case contains rows representing ...
0
votes
3answers
293 views

second sorting with php usort

So Ive got a pretty big array of data and need to sort them by two criteria. There is variable $data['important'] and $data['basic']. They are simple numbers and I am using uasort to sort $data ...
0
votes
4answers
208 views

Help with optimising calls to the usort function in PHP

This is my callback for my usort() public function sortProperties($a, $b) { $sortA = inflector::camelize(str_replace('-', '_', $this->sortBy)); $sortB = ...
0
votes
2answers
1k views

Using usort in php to sort an array of objects?

I did look at usort, but am still a little confused... Here is what the $myobject object looks like: Array ( [0] => stdClass Object ( [tid] => 13 [vid] ...
0
votes
1answer
290 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, ...