最佳答案
对函数使用 usort 并不复杂
这是我以前在我的线性代码
function merchantSort($a,$b){
return ....// stuff;
}
$array = array('..','..','..');
我只是简单地做
usort($array,"merchantSort");
现在我们正在升级代码,删除所有全局函数,并将它们放在适当的位置。现在所有的代码都在一个类中,我不知道如何使用 usort 函数用一个对象方法而不是一个简单的函数的参数对数组进行排序
class ClassName {
...
private function merchantSort($a,$b) {
return ...// the sort
}
public function doSomeWork() {
...
$array = $this->someThingThatReturnAnArray();
usort($array,'$this->merchantSort'); // ??? this is the part i can't figure out
...
}
}
问题是如何在 usort ()函数中调用 object 方法