Answers for "function in PHP returns an array of strings, each of which is a substring of main string formed by splitting it on boundaries formed by a delimiter."

PHP
8

php split string along spaces

// Example 1
$pizza  = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0]; // piece1
echo $pieces[1]; // piece2
Posted by: Guest on March-05-2020
5

php split string

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

Code answers related to "function in PHP returns an array of strings, each of which is a substring of main string formed by splitting it on boundaries formed by a delimiter."

Browse Popular Code Answers by Language