php convert parameter string to array code example
Example 1: string to array in php
print_r(explode(',',$yourstring));
Example 2: convert string to array in php
array str_split($org_string, $splitting_length)
print_r(explode(',',$yourstring));
array str_split($org_string, $splitting_length)