Answers for "explode for loop php"

PHP
5

php explode new line

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

php explode

$colors  = "red,blue,green,orange";
$colorsArray = explode(",", $colors);
Posted by: Guest on June-14-2019

Browse Popular Code Answers by Language