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, ∼2545🔥, 0💬
Popular Posts:
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...
How to access Query String parameters from "context.Request.Url.Que ry"object in Azure API Policy? Q...
How to validate the id_token signature received from Azure AD v2.0 authentication response? You can ...
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Man...