implode()
or join()
functionYou 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
?>
i hope you like this small tutorial.
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
Upload Multiple Images With Preview Using Javascript
Image uploading is very common functiona...How to extract substring from a string in PHP
Use the PHP substr() function...[previous exception] [object] (PDOException(code: 0): could not find driver
In this article, i will share with you h...How to Capture Browser Window Resize Event in JavaScript
Use the addEventListener() Met...Laravel Collection count and countBy Method Example
In this article, we will discuss about h...