Answers for "php split only on first space"

PHP
2

php split string at first space

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

Browse Popular Code Answers by Language