Answers for "php make "a=b" string to array"

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

Code answers related to "php make "a=b" string to array"

Browse Popular Code Answers by Language