programming-examples/php/_Basics/Program to join the array elements into a string..php

7 lines
93 B
PHP
Raw Normal View History

2019-11-15 12:59:38 +01:00
<?php
$arr = array('w','e','l','c','o','m','e');
$str = join($arr);
echo $str;
?>