xxxx日本护士丰满hd|亚洲av日韩av无码av欧美av|精品国产污污网站在线看免费|日日摸日日碰夜夜爽久久|国产一区二区亚洲精品

Ds\Sequence::sort

(PECL ds >= 1.0.0)

Ds\Sequence::sort Sorts the sequence in-place

說(shuō)明

abstract public Ds\Sequence::sort(callable $comparator = ?): void

Sorts the sequence in-place, using an optional comparator function.

參數

comparator

在第一個(gè)參數小于,等于或大于第二個(gè)參數時(shí),該比較函數必須相應地返回一個(gè)小于,等于或大于 0 的整數。

callback(mixed $a, mixed $b): int
警告

Returning non-integer values from the comparison function, such as float, will result in an internal cast to int of the callback's return value. So values such as 0.99 and 0.1 will both be cast to an integer value of 0, which will compare such values as equal.

返回值

沒(méi)有返回值。

范例

示例 #1 Ds\Sequence::sort() example

<?php
$sequence 
= new \Ds\Vector([45132]);
$sequence->sort();

print_r($sequence);
?>

以上例程的輸出類(lèi)似于:

Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
)

示例 #2 Ds\Sequence::sort() example using a comparator

<?php
$sequence 
= new \Ds\Vector([45132]);

$sequence->sort(function($a$b) {
    return 
$b <=> $a;
});

print_r($sequence);
?>

以上例程的輸出類(lèi)似于:

Ds\Vector Object
(
    [0] => 5
    [1] => 4
    [2] => 3
    [3] => 2
    [4] => 1
)
xxxx日本护士丰满hd|亚洲av日韩av无码av欧美av|精品国产污污网站在线看免费|日日摸日日碰夜夜爽久久|国产一区二区亚洲精品