Friday, October 10, 2025
HomeLanguagesPHP | DsVector join() Function

PHP | Ds\Vector join() Function

The Ds\Vector::join() function is an inbuilt function in PHP which is used to join all the elements of vector as a string using the separator provided as the argument.

Syntax:

string public Ds\Vector::join( $glue )

Parameters: This function accepts a single parameter $glue which is used to hold the separator. It is an optional parameter.

Return Value: This function returns the value of the vector as string.

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

Program 1:




<?php
  
// Create new vector
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
  
// Display the vector element
print_r($vector);
  
echo("\nVector elements after joining\n");
  
print_r($vector->join());
  
?>


Output:

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

Vector elements after joining
12345

Program 2:




<?php
  
// Create new vector
$vector = new \Ds\Vector(["neveropen", "for", "neveropen"]);
  
// Display the vector element
print_r($vector);
  
echo("\nVector elements after joining\n");
  
print_r($vector->join("|"));
  
?>


Output:

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

Vector elements after joining
neveropen|for|neveropen

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7101 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS