Answers for "concat an array of strings in php"

PHP
0

join array of strings php

$arr = array('Hello','World!','Beautiful','Day!');
echo join(",",$arr);
Posted by: Guest on April-05-2020
0

merge strings in php

$merge = "Hello" . " World!";
Posted by: Guest on January-17-2022

Browse Popular Code Answers by Language