Friday, September 19, 2025
HomeLanguagesPHP | DsVector unshift() Function

PHP | Ds\Vector unshift() Function

The Ds\Vector::unshift() function is an inbuilt function in PHP which is used to adds elements to the front of vector. This function moves all the elements in the vector towards forward and adds the new element to the front.

Syntax:

void public Ds\Vector::unshift( $values )

Parameters: This function accepts single parameter $values which holds the values to be added to the vector.

Return Value: This function does not return any value.

Below programs illustrate the Ds\Vector::unshift() function in PHP:

Program 1:




<?php
  
// Create new Vector
$vect = new \Ds\Vector([3, 6, 1, 2, 9, 7]);
  
echo("Original vector:\n");
  
// Display the vector elements
print_r($vect);
  
echo("\nArray elements after inserting new element\n");
  
// Use unshift() function to aff elements
$vect->unshift(10, 20, 30);
  
// Display updated vector elements
print_r($vect);
  
?>


Output:

Original vector:
Ds\Vector Object
(
    [0] => 3
    [1] => 6
    [2] => 1
    [3] => 2
    [4] => 9
    [5] => 7
)

Array elements after inserting a new element
Ds\Vector Object
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 3
    [4] => 6
    [5] => 1
    [6] => 2
    [7] => 9
    [8] => 7
)

Program 2:




<?php
  
// Create new Vector
$vect = new \Ds\Vector(["neveropen", "for", "neveropen"]);
  
echo("Original vector:\n");
  
// Display the vector elements
print_r($vect);
  
echo("\nArray elements after inserting new element\n");
  
// Use unshift() function to aff elements
$vect->unshift("PHP articles");
  
// Display updated vector elements
print_r($vect);
  
?>


Output:

Original vector:
Ds\Vector Object
(
    [0] => neveropen
    [1] => for
    [2] => neveropen
)

Array elements after inserting a new element
Ds\Vector Object
(
    [0] => PHP articles
    [1] => neveropen
    [2] => for
    [3] => neveropen
)

Reference: http://php.net/manual/en/ds-vector.unshift.php

RELATED ARTICLES

Most Popular

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6665 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS