Answers for "php array functions explode"

PHP
46

php explode

$colors  = "red,blue,green,orange";
$colorsArray = explode(",", $colors);
Posted by: Guest on June-14-2019
1

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>
Posted by: Guest on September-18-2020
4

php explode end

$url = explode("/", URL::current());
echo end($url);
Posted by: Guest on July-08-2020

Browse Popular Code Answers by Language