Wednesday, September 25, 2024
Google search engine
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 Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments