WMPRO, WMMINI FW >= 1.0 WMMEGA FW >= 2.0
Turn an array into a string
Turn an array into a string with the delimiter separating each element
$array: Array to be turned into a string
$delimiter: Character to use for separating each array element put into the string
For float values and indexed float arrays, values are rounded to 3 decimal places.
String containing concatenated elements
<? $mylist=array("one","two","three","four"); $st=implode($mylist,"|"); print($st); ?>
The above example will output:
one|two|three|four