2
class DBNews {

    public function get_latest_posts($limit){

        // code goes here

        $posts_array = array();
        uasort($posts_array, $this->cmp);

    }

    public function cmp($a, $b) {
        if ($a == $b) {
            return 0;
        }

        return ($a < $b) ? -1 : 1;
    }
}

我收到以下警告:

Warning: uasort() expects parameter 2 to be a valid callback, 
no array or string given in 
C:\xampp\htdocs\news\admin\functions.php on line 554.

第 554 行包含uasort($posts_array, $this->cmp).

在哪里使用字符串或数组以及以什么方式使用?

编辑:如果我使用uasort($posts_array, array($this, 'cmp'));,我会收到以下警告:

uasort() expects parameter 2 to be a valid callback,
array must have exactly two members in
C:\xampp\htdocs\news\admin\functions.php on line 554
4

3 回答 3

8

你必须这样称呼它:

uasort($posts_array, Array ( $this, 'cmp');

以下链接解释了如何在 PHP 中构造一个有效的回调:http ://www.php.net/manual/en/language.types.callable.php

于 2013-03-06T10:15:43.667 回答
5
uasort($posts_array, array($this, 'cmp'));
于 2013-03-06T10:15:49.313 回答
5

如果你有 >= 5.3 并且你没有在任何其他函数中使用 compare 方法,你也可以使用闭包:

uasort($posts_array, function($a, $b) {
    if ($a == $b) {
        return 0;
    }

    return ($a < $b) ? -1 : 1;
});
于 2013-03-06T10:25:53.537 回答