Answers for "how to convert an array to string php"

PHP
7

php implode

$arr = array('Hello','World!','Beautiful','Day!');
echo implode(" ",$arr);
// Outputs: 'Hello World! Beautiful Day!'
Posted by: Guest on June-16-2020
1

arry to string php

implode("|",$type);
Posted by: Guest on April-07-2020

Code answers related to "how to convert an array to string php"

Browse Popular Code Answers by Language