explode implode in php 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
<?php
$str = "Hello world. It's a beautiful day.";
print_r (explode(" ",$str));
?>