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, ∼2681🔥, 0💬
Popular Posts:
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....
How to access Query String parameters from "context.Request.Url.Que ry"object in Azure API Policy? Q...
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...
How to add request query string Parameters to my Azure API operation to make it more user friendly? ...