How To Join Multiple Strings into a Single String

Q

How To Join Multiple Strings into a Single String? - PHP Script Tips - PHP Built-in Functions for Strings

✍: FYIcenter.com

A

If you multiple strings stored in an array, you can join them together into a single string with a given delimiter by using the implode() function. Here is a PHP script on how to use implode():

<?php 
$date = array('01', '01', '2006');
$keys = array('php', 'string', 'function');
print("A formated date: ".implode("/",$date)."\n");
print("A keyword list: ".implode(", ",$keys)."\n");
?>

This script will print:

A formated date: 01/01/2006
A keyword list: php, string, function

2007-04-21, 4731👍, 0💬