PHP | Ds\Vector join() Function Last Updated : 22 Aug, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 <?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 <?php // Create new vector $vector = new \Ds\Vector(["geeks", "for", "geeks"]); // Display the vector element print_r($vector); echo("\nVector elements after joining\n"); print_r($vector->join("|")); ?> Output: Ds\Vector Object ( [0] => geeks [1] => for [2] => geeks ) Vector elements after joining geeks|for|geeks Reference: http://php.net/manual/en/ds-vector.join.php Comment More infoAdvertise with us Next Article PHP | DsSequence join() Function B barykrg Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-ds_vector Similar Reads PHP | DsSet join() Function The Ds\Set::join() function is an inbuilt function in PHP which is used to join all values as string. Syntax: string public Ds\Set::join ([ string $glue ] ) Parameters: This function accepts single parameter $glue which is optional. It is used to separate the set element. Return Value: This function 1 min read PHP | DsDeque join() Function The Ds\Deque::join() function is an inbuilt function in PHP which is used to join all values in the Deque as a string. The separator can also be used to join the elements. Syntax: public Ds\Deque::join( $glue ) : string Parameters: This function accepts single parameter $glue which holds the separat 2 min read PHP | DsVector 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 1 min read PHP | DsSequence join() Function The Ds\Sequence::join() function is an inbuilt function in PHP which is used to join all values as string. Syntax: string abstract public Ds\Sequence::join ([ string $glue ] ) Parameter: This function accepts single parameter $glue which is optional. It is used to separate the sequence element. Retu 1 min read PHP | DsMap xor() Function The Ds\Map::xor() function is an inbuilt function in PHP which is used to create a new map which contains the value either in the first map or second map but not both. Syntax: Ds\Map public Ds\Map::xor ( Ds\Map $map ) Parameter: This parameter holds the other map of values. Return value: It is used 2 min read PHP | DsSet xor() Function The Ds\Set::xor() function is an inbuilt function in PHP which is used to create a new set which contains the value either in the first set or second set but not both. Syntax: Ds\Set public Ds\Set::xor ( Ds\Set $set ) Parameters: This function accepts a single parameter $set which is used to hold th 2 min read PHP | Ds\Vector join() Function min read Like