Split string
Using the explode function to split a string into an array
Copy CodeThe code is as follows:
$source = "HELLO1,HELLO2,HELLO3,HELLO4,HELLO5";//separate strings by commas
$hello = Explode (', ', $source);
for ($index =0; $index {
echo $hello [$index];echo]
";
}
?>
Split function for character segmentation
The delimiter can be a slash, a dot, or a horizontal line
Copy CodeThe code is as follows:
$date = "04/30/1973";
List ($month, $day, $year) = Split (' [/.-] ', $date);
echo "Month: $month; Day: $day; Year: $year
\ n ";
?>
http://www.bkjia.com/PHPjc/730055.html www.bkjia.com true http://www.bkjia.com/PHPjc/730055.html techarticle Split string//Use the Explode function to split the string into an array to copy the code as follows:? php $source = "HELLO1,HELLO2,HELLO3,HELLO4,HELLO5";//separate string by comma $hello = ex. .