explode a string code example
Example 1: string to array in php
print_r(explode(',',$yourstring));
Example 2: php split string
explode(" ","Geeks for Geeks")
print_r(explode(',',$yourstring));
explode(" ","Geeks for Geeks")