From: <ama...@us...> - 2003-08-22 07:19:22
|
Update of /cvsroot/binaryphp/binaryphp/tests/arrays In directory sc8-pr-cvs1:/tmp/cvs-serv14901/tests/arrays Modified Files: implode.php Log Message: fixed an echo bug Index: implode.php =================================================================== RCS file: /cvsroot/binaryphp/binaryphp/tests/arrays/implode.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** implode.php 11 Aug 2003 11:21:33 -0000 1.1 --- implode.php 22 Aug 2003 03:46:46 -0000 1.2 *************** *** 1,4 **** <?php ! $array = array('This', 'is', 'a', 'test.'); ! echo implode(' ', $array); ?> --- 1,4 ---- <?php ! $a = array('This', 'is', 'a', 'test.'); ! echo implode(' ', $a); ?> |