PKD reader
0
Q:

implode and explode in php


<?php

$arr = array('Hello','World!','Beautiful','Day!');

echo implode(" ",$arr);

?> 
3
<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> 
0

New to Communities?

Join the community