PHP | Función Ds\\Sequence reverse()

La función Ds\Sequence::reverse() es una función incorporada en PHP que se usa para invertir la secuencia en el lugar.

Sintaxis:

void abstract public Ds\Sequence::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\Sequence::reverse() en PHP:

Programa 1:

<?php 
  
// Create new Vector 
$seq = new \Ds\Vector([1, 2, 3, 4, 5]); 
  
// Display the elements 
print_r($seq); 
  
echo("Sequence after reversing\n"); 
  
// Use reverse() function to reverse 
// the element and display it 
$seq->reverse();
  
print_r($seq);
  
?>
Producción:

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

Programa 2:

<?php 
  
// Create new Vector 
$seq = new \Ds\Vector(["Geeks", "for", "Geeks",
        "Computer", "Science", "Portal"]); 
  
// Display the elements 
print_r($seq); 
  
echo("Sequence after reversing\n"); 
  
// Use reverse() function to reverse 
// the element and display it 
$seq->reverse();
  
print_r($seq);
  
?>
Producción:

Ds\Vector Object
(
    [0] => Geeks
    [1] => for
    [2] => Geeks
    [3] => Computer
    [4] => Science
    [5] => Portal
)
Sequence after reversing
Ds\Vector Object
(
    [0] => Portal
    [1] => Science
    [2] => Computer
    [3] => Geeks
    [4] => for
    [5] => Geeks
)

Referencia: https://www.php.net/manual/en/ds-sequence.reverse.php

Publicación traducida automáticamente

Artículo escrito por R_Raj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *