La función Ds \ Vector :: unshift () puede agregar valores al frente de un vector.
Sintaxis
public void Ds\Vector::unshift([ mixed $values ] )
La función Ds \ Vector :: unshift () puede agregar valores al frente de un vector, moviendo todos los valores actuales hacia adelante para dejar espacio para nuevos valores.
La función Ds \ Vector :: unshift () no devuelve ningún valor.
Ejemplo 1
<?php
$vector = new \Ds\Vector([2, 5, 8, 4, 7, 1]);
echo("The original vector: \n");
print_r($vector);
echo("\n The array elements after inserting new element: \n");
$vector->unshift(10, 20, 30);
print_r($vector);
?>
Ejemplo 2
<?php
$vector = new \Ds\Vector(["Tutorials", "Point", "Tutorix"]);
echo("The original vector: \n");
print_r($vector);
echo("\n The array elements after inserting new element: \n");
$vector->unshift("India");
print_r($vector);
?>