1.

What is implode() in php?

Answer»

PHP implode() function is used join ARRAY elements with a string.In other words we can say it returns a string from the elements of an array.Example

$array = array('My','NAME','Is','BestInterViewQuestion');
echo implode(" ",$array)


// OUTPUT : My Name Is BestInterViewQuestion



Discussion

No Comment Found