php implode function example
Definition: - implode is a string function. By using this
function to join the string as array elements
Example: - <? php
$arr= array (‘this’, ‘is’, implode,
'function');
Echo implode (" “, $arr);
?>
Output: - this is implode function