0 votes
in PHP by
The function in PHP that can be used to concatenate array elements to form a single delimited string is -

a) implode()

b) concat()

c) explode()

d) concatenate()

1 Answer

0 votes
by

a) implode()

Description: PHP implode() is a string function, which joins the array elements in a string. The implode() function works the same as the join() function and returns a string created from the elements of the array. Basically, this function joins all elements of an array in one string.

Related questions

+1 vote
asked May 13, 2022 in PHP by john ganales
+1 vote
asked May 13, 2022 in PHP by john ganales
...