PHP implode() Function

You are Here:

PHP implode()

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

Note: This function accept its parameters in either order. For consistency with explode(), however, it is deprecated not to use the documented order of arguments.

Note: This function is binary-safe.

Example

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

Output

apples, bananas, orange

Syntax

implode(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