Answers for "joining strings in php"

PHP
2

join string php

<?php
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);
?>
Posted by: Guest on April-09-2020

Browse Popular Code Answers by Language