PHP program to combine the array elements into a string with given delimiter:
The below program is to combine the array elements into a string with given delimiter using PHP implode() function. The PHP echo statement is used to output the result on the screen. An array is a single variable which can store multiple values at a time. The PHP implode() function is used to get a string by combining the elements of an array.
Example
<!DOCTYPE html> <html> <body> <?php $arr = array("Have", "Courage.", "Live", "Free."); print_r (implode(" ",$arr)); ?> </body> </html> |
Output
Have Courage. Live Free. |