Answers for "php split a string at the first space"

PHP
2

php split string at first space

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

Code answers related to "php split a string at the first space"

Browse Popular Code Answers by Language