php make an array out of string explode , code example
Example 1: explode in php
$str = 'one two three four';
$numbers4 = explode(' ',$str);
Example 2: character split php
str_split ( string $string [, int $split_length = 1 ] ) : array
$str = 'one two three four';
$numbers4 = explode(' ',$str);
str_split ( string $string [, int $split_length = 1 ] ) : array