Tools, FAQ, Tutorials:
Joining Multiple Strings in PHP
How To Join Multiple Strings into a Single String?
✍: 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
⇒ Applying UUEncode to a String in PHP
2016-10-13, 1555👍, 0💬
Popular Posts:
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The cu...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
How to troubleshoot the Orderer peer? The Docker container terminated by itself. You can follow this...