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, ∼2684🔥, 0💬
Popular Posts:
How to reinstall npm with a node version manager? I am getting permission errors with the current ve...
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most brows...
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to ...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....