Tools, FAQ, Tutorials:
Joining Array Values into a Single String in PHP
How To Join Multiple Strings Stored in an Array into a Single String in PHP?
✍: FYIcenter.com
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 formatted date: ".implode("/",$date)."\n");
print("A keyword list: ".implode(", ",$keys)."\n");
?>
This script will print:
A formatted date: 01/01/2006 A keyword list: php, string, function
⇒ Splitting a String into an Array in PHP
2017-01-05, ∼2810🔥, 0💬
Popular Posts:
How To Protect Special Characters in Query String in PHP? If you want to include special characters ...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
How To Open Standard Output as a File Handle in PHP? If you want to open the standard output as a fi...
How To Break a File Path Name into Parts in PHP? If you have a file name, and want to get different ...
How to use the RSS Online Validator at w3.org? You can follow this tutorial to learn how to use the ...