explode array in php code example

Example 1: explode comma php

$myString = "9,[email protected],8";
$myArray = explode(',', $myString);
print_r($myArray);

Example 2: php explode

$colors  = "red,blue,green,orange";
$colorsArray = explode(",", $colors);

Example 3: implode and explode in php

<html>  
<body bgcolor="pink">  
<h3>Implode Function</h3>  
<?php  
$arr=array ('I','am','simple','boy!');  
echo implode(" ",$arr);  
$str="I am simple boy!";  
print_r(explode(" ",$str));  
?>  
</body>  
</html>

Example 4: php explode end

$url = explode("/", URL::current());
echo end($url);

Example 5: explode in php

$str = 'one two three four';
$numbers4 = explode(' ',$str);

Example 6: php split string

explode(" ","Geeks for Geeks")

Tags:

Php Example