PHP - Funzione Ds Imposta inversa ()
La funzione Ds \ Set :: reversed () può restituire una copia invertita.
Sintassi
public Ds\Set Ds\Set::reversed( void )
La funzione Ds \ Set :: reversed () non ha parametri.
La funzione Ds \ Set :: reversed () può restituire una copia inversa di un set.
Esempio 1
<?php
$set = new \Ds\Set([1, 2, 3, 4, 5]);
echo "\n The actual set is: \n";
print_r($set);
echo("The reversed set is: \n");
print_r($set->reversed());
?>
Esempio-2
<?php
$set = new \Ds\Set(["Tutorials", "Point", "India"]);
echo "\n The actual set is: \n";
print_r($set);
echo("The reversed set is: \n");
print_r($set->reversed());
?>