Answers for "how to split string by first character in php"

PHP
2

php split string at first space

$array = explode(' ', $string, 2);
Posted by: Guest on May-31-2020

Code answers related to "how to split string by first character in php"

Browse Popular Code Answers by Language