使用带有类私有函数的php中的usort

时间:2011-05-19 05:03:35

标签: php arrays sorting object

确定使用带有函数的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()函数中调用对象方法

5 个答案:

答案 0 :(得分:214)

使您的排序功能静止:

private static function merchantSort($a,$b) {
       return ...// the sort
}

使用数组作为第二个参数:

$array = $this->someThingThatReturnAnArray();
usort($array, array('ClassName','merchantSort'));

答案 1 :(得分:69)

  1. 打开手册页http://www.php.net/usort
  2. 看到$value_compare_func的类型为callable
  3. 点击关联的关键字即可到达http://php.net/manual/en/language.types.callable.php
  4. 看到语法为array($this, 'merchantSort')

答案 2 :(得分:12)

您需要通过$this例如:usort( $myArray, array( $this, 'mySort' ) );

完整示例:

class SimpleClass
{                       
    function getArray( $a ) {       
        usort( $a, array( $this, 'nameSort' ) ); // pass $this for scope
        return $a;
    }                 

    private function nameSort( $a, $b )
    {
        return strcmp( $a, $b );
    }              

}

$a = ['c','a','b']; 
$sc = new SimpleClass();
print_r( $sc->getArray( $a ) );

答案 3 :(得分:3)

在这个例子中,我按照名为AverageVote的数组中的字段进行排序。

您可以在调用中包含该方法,这意味着您不再有类范围问题,例如...

        usort($firstArray, function ($a, $b) {
           if ($a['AverageVote'] == $b['AverageVote']) {
               return 0;
           }

           return ($a['AverageVote'] < $b['AverageVote']) ? -1 : 1;
        });

答案 4 :(得分:1)

在Laravel(5.6)模型类中,我这样调用它,两个方法都是公共静态,在Windows 64位上使用php 7.2。

public static function usortCalledFrom() 

public static function myFunction()

我这样打电话给usortCalledFrom()

usort($array,"static::myFunction")

这些都不起作用

usort($array,"MyClass::myFunction")
usort($array, array("MyClass","myFunction")