php implode letters to string code example
Example 1: php implode
$arr = array('Hello','World!','Beautiful','Day!');
echo implode(" ",$arr);
// Outputs: 'Hello World! Beautiful Day!'
Example 2: character split php
str_split ( string $string [, int $split_length = 1 ] ) : array