Syntax:string public DsSet::join ([string $glue])
Parameters :This function takes one parameter,
$glue,which is optional. Used to separate a set element.
Return value:this function returns a string.The following programs illustrate the
Ds / Set::join() functionin PHP:
Program 1:
// Create a new set
$set
=
new
DsSet ([
"G"
,
"E"
,
"E"
,
" K "
,
" S "
, 1, 2, 3, 4]);
// Use the join() function and
// display the string
var_dump (
$set
-> join());
?>
Exit:string (8 ) "GEKS1234"
Program 2:
// Create a new set
$set
=
new
DsSet ([
"G"
,
"E"
,
"E"
,
"K"
,
"S"
, 1, 2, 3, 4]);
// Use the join() function and
// display a split line
// semicolon
var_dump (
$set
-> join (
" , "
));
// Create a new set
$set
=
new
DsSet ([1, 2, 3,
"g"
,
" e "
]);
// Use the join() function
var_dump (
$set
-> join (
"|"
));
?>
Exit:string (22 ) "G, E, K, S, 1, 2, 3, 4" string (9) "1 | 2 | 3 | g | e"
Link: https://www.php.net/manual/en/ds-set.join.php
Shop
Best laptop for Sims 4
$
Best laptop for Zoom
$499
Best laptop for Minecraft
$590
Best laptop for engineering student
$
Best laptop for development
$
Best laptop for Cricut Maker
$
Best laptop for hacking
$890
Best laptop for Machine Learning
$950
Latest questions
NUMPYNUMPY
psycopg2: insert multiple rows with one query
12 answers
NUMPYNUMPY
How to convert Nonetype to int or string?
12 answers
NUMPYNUMPY
How to specify multiple return types using type-hints
12 answers
NUMPYNUMPY
Javascript Error: IPython is not defined in JupyterLab
12 answers
Wiki
Python OpenCV | cv2.putText () method
numpy.arctan2 () in Python
Python | os.path.realpath () method
Python OpenCV | cv2.circle () method
Python OpenCV cv2.cvtColor () method
Python - Move item to the end of the list
time.perf_counter () function in Python
Check if one list is a subset of another in Python
Python os.path.join () method