La función Ds\Vector::reverse() es una función incorporada en PHP que se usa para invertir los elementos del vector en el lugar.
Sintaxis:
void public Ds\Vector::reverse( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función no devuelve ningún valor.
Los siguientes programas ilustran la función Ds\Vector::reverse() en PHP:
Programa 1:
<?php // Create new Vector $arr = new \Ds\Vector([1, 2, 3, 4, 5]); // Display the elements print_r($arr); echo("Vector after reversing\n"); // Use reverse() function to reverse // the vector elements and display it $arr->reverse(); print_r($arr); ?>
Producción:
Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 ) Vector after reversing Ds\Vector Object ( [0] => 5 [1] => 4 [2] => 3 [3] => 2 [4] => 1 )
Programa 2:
<?php // Create new Vector $arr = new \Ds\Vector(["Geeks", "GFG", "Computer", "Science", "Portal"]); // Display the elements print_r($arr); echo("Vector after reversing\n"); // Use reverse() function to reverse // the vector elements and display it $arr->reverse(); print_r($arr); ?>
Producción:
Ds\Vector Object ( [0] => Geeks [1] => GFG [2] => Computer [3] => Science [4] => Portal ) Vector after reversing Ds\Vector Object ( [0] => Portal [1] => Science [2] => Computer [3] => GFG [4] => Geeks )
Referencia: https://www.php.net/manual/en/ds-vector.reverse.php