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, ∼2864🔥, 0💬
Popular Posts:
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
How to attach console to a Running Container using the "docker container exec" command? I want to ge...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
How to register and get an application ID from Azure AD? The first step to use Azure AD is to regist...
What is EPUB 3.0 Metadata "dc:description" Element? EPUB 3.0 Metadata "dc:description" is an optiona...