Please note, this is a STATIC archive of website www.tutorialrepublic.com from 10 Sep 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
WEB TUTORIALS
PRACTICE EXAMPLES
HTML REFERENCES
CSS REFERENCES
PHP REFERENCES
Advertisements

How to create a string by joining the values of an array in PHP

Topic: PHP / MySQLPrev|Next

Answer: Use the PHP implode() or join() function

You can use the PHP implode() or join() function for creating a string by joining the values or elements of an array with a glue string like comma (,) or hyphen (-).

Let's take a look at the following example to understand how it basically works:

<?php
$array = array("red", "green", "blue");
 
// Turning array into a string
$str = implode(", ", $array);
echo $str; // Outputs: red, green, blue
?>

Related FAQ

Here are some more FAQ related to this topic:

Advertisements
Bootstrap UI Design Templates