Implode function example
A simple definition of the implode function.
Code Markup
$numbers = array('one', 'two', 'three', 'four');
$commaList = implode(', ', $numbers);
A simple definition of the implode function.
$numbers = array('one', 'two', 'three', 'four');
$commaList = implode(', ', $numbers);