7 lines
93 B
PHP
7 lines
93 B
PHP
<?php
|
|
|
|
$arr = array('w','e','l','c','o','m','e');
|
|
$str = join($arr);
|
|
echo $str;
|
|
|
|
?>
|