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(["zambiatek", "for", "zambiatek"]); // Display the vector element print_r($vector); echo("\nVector elements after joining\n"); print_r($vector->join("|")); ?> |
Output:
Ds\Vector Object
(
[0] => zambiatek
[1] => for
[2] => zambiatek
)
Vector elements after joining
zambiatek|for|zambiatek
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, zambiatek 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!



