![]() |
|
|
+ Search |
![]()
|
Jul 4th, 2001 08:57
Joachim Klinkhammer, Steve Dickson,
$arr1 = array(0, 1, 2, 3, 4, 5);
$a = implode("", $arr1);
$b = implode(",", $arr1);
$a is now '012345'
$b is now '0,1,2,3,4,5'
$arr2 = explode(",", $b);
$arr2 is now = $arr1