Update of /cvsroot/binaryphp/binaryphp/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv2833/tests
Modified Files:
implode.php
Log Message:
fixed the implode() example, arrays seem to segfault
Index: implode.php
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/tests/implode.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** implode.php 5 Aug 2003 18:09:26 -0000 1.1
--- implode.php 6 Aug 2003 22:22:19 -0000 1.2
***************
*** 1,4 ****
<?php
$array = array('This', 'is', 'a', 'test.');
! echo implode(', ' $array);
?>
--- 1,4 ----
<?php
$array = array('This', 'is', 'a', 'test.');
! echo implode(' ', $array);
?>
|