php explode() function code example

Example 1: php explode

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

Example 2: 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 3: php explode end

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

Example 4: explode in php

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

Example 5: php split string

explode(" ","Geeks for Geeks")

Example 6: php explode

$list = "one,two,three";
$sep_char = ",";
// array of all needed items: "one, "two", "three"
$arr = explode($sep_char, $list);
// array of max two items: "one", "two,three"
$arr = explode($sep_char, $list, 2);

Tags:

Php Example