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, 2055🔥, 0💬
Popular Posts:
How To Access a Global Variable inside a Function? in PHP? By default, global variables are not acce...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...
Where to find tutorials on EPUB file format? I want to know how to create EPUB books. Here is a larg...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...