| 
 | implodeJoin array elements with a string Description
   string implode
    ( string  $glue, array$pieces)
   string implode
    ( array  $pieces)
   Join array elements with a  
 Parameters
 
 Return ValuesReturns a string containing a string representation of all the array elements in the same order, with the glue string between each element. Examples
 Example #1 implode example 
<?phpNotes
 See Also
 
 |