Warning: Array to string conversion in php code example
Example 1: php Array to string conversion
Using implode() function in Php
-----------------------
Syntax
implode(separator,array);
Example
<?php
//assigning value to the array
$dummyArr = array("Hello","Greppers,","Ankur","here !");
echo implode(" ",$dummyArr);// Use of implode function
?>
Output:
Hello Greppers, Ankur here !
Example 2: Array to String Conversion in PHP
$gadget = array( 'computer', 'mobile', 'tablet' );
echo implode($arr);