Answers for "php string split at \n"

PHP
5

php explode new line

$values = preg_split('/\r\n|\r|\n/', $myString);
Posted by: Guest on February-06-2021
6

php split string

explode(" ","Geeks for Geeks")
Posted by: Guest on April-02-2020

Browse Popular Code Answers by Language