[PHP-DEV] PHP 4.0 Bug #2533: implode changes arguments From: alan <email protected>
Date: 10/15/99

From: alan <email protected>
Operating system: rh6+apache1.3.9
PHP version: 4.0 Latest CVS (15/10/1999)
PHP Bug Type: Misbehaving function
Bug description: implode changes arguments

Implode changes arguments - zeev fixed this pre august, it is back !!
I've tested this on a clean cvs co + build

<?php
 
$c=array(array("1","2"),array("a","b"));
 
echo implode(",",$c)."<br>\n";
echo implode(",",$c[0])."<br>\n";
 
?>

gives:

Array,Array

Warning: Bad arguments to implode() in /usr/local/apache/htdocs/ACME/test.php on line 6

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>