php string to arrray code example
Example 1: explode in php
$str = 'one two three four';
$numbers4 = explode(' ',$str);
Example 2: string to array in php
print_r(explode(',',$yourstring));
$str = 'one two three four';
$numbers4 = explode(' ',$str);
print_r(explode(',',$yourstring));