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 harsukh21@gmail.com
How to add new elements to DOM in jQuery
Use the jQuery append() or prepend() met...Laravel Passport - Create REST API with authentication
Today, in this tutorial we are share wit...Real Time Comment System With Laravel And Vuejs
Today, Laravelcode share sommething new...Invokable Controllers Example in Laravel 7
Hello Artisan In this following tutor...How to create a string by joining the values of an array in PHP
Use the PHP implode() or ...