Forum Moderators: coopster
How do I split a string delimited by a comma? I can't seem to escape by using
explode(\,,$options);
explode(,,$options);
Steve.
The answer would be
explode(",",$options);
Ever had one of those days?!
does it too. Nice thing about it is you can use regex, maybe if you wanted to only split every second comma for instance.