PHP join() Function

You are Here:

PHP join()

The join() function joins array elements with a string.

This function is an alias of implode() function.

Example

PHP Compiler
<?php $arr = array('apple', 'banana', 'orange'); echo join("s, ", $arr); ?>

Output

apples, bananas, orange

Syntax

join(str, arr)

Parameter Values

ValueTypeExplanation
strOptionalSpecifies a string to prepend to each element in an array.
Default value is an empty string.
arrRequiredSpecifies an array.

Return Value

ValueExplanation
StringReturns a string containing a string representation of all the array elements in the same order, with the glue string between each element.

Reminder

Hi Developers, we almost covered 90% of String functions and Interview Question on PHP with examples for quick and easy learning.

We are working to cover every Single Concept in PHP.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author