programming-examples/php/Basics/Program to join the array elements into a string..php
2019-11-18 14:44:36 +01:00

7 lines
93 B
PHP

<?php
$arr = array('w','e','l','c','o','m','e');
$str = join($arr);
echo $str;
?>