PHP - Funzione Ds Set Sort ()
La funzione Ds \ Set :: Sort () può restituire una copia ordinata.
Sintassi
public Ds\Set Ds\Set::sorted([ callable $comparator ] )
La funzione Ds \ Set :: Sort () può restituire una copia ordinata di un set utilizzando una funzione di confronto opzionale.
Esempio 1
<?php
$set = new \Ds\Set([20, 10, 30, 50, 40]);
print_r($set->sorted());
?>
Esempio 2
<?php
$set = new \Ds\Set([2, 4, 8, 3, 6, 1, 5]);
$sorted = $set->sorted(function($x, $y) {
return $y <=> $x;
});
print_r($sorted);
?>