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, ∼3016🔥, 0💬
Popular Posts:
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...
How to add request URL Template Parameters to my Azure API operation to make it more user friendly? ...
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...