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[] = $website;  
}  
usort($links, array("Link","compare"));  

But I get an error message and I cant figure out why...

"Warning: usort() [function.usort]: The argument should be an array"

link|improve this question
That's an odd issue. Does var_dump($links); actually return an array? – Oldskool Jan 24 at 8:34
Are you sure that the foreach loop are actual executed? – Krister Andersson Jan 24 at 8:34
feedback

2 Answers

If $links haven't been initialized as an array, when $filearray is empty, $links remains null.

Add $links = array(); before the loop.

link|improve this answer
feedback

Second parameter is the comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second.

Check the below article http://php.net/manual/en/function.usort.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.