Revision: 34972
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at October 31, 2010 09:08 by zreedeecom
Initial Code
<?php $array = array( [0] => "value 1", [1] => "value 2" ); $output = implode( ",", $array ); echo $output; # This will output: # value 1,value 2
Initial URL
Initial Description
Initial Title
Array to string
Initial Tags
php, array
Initial Language
PHP