From: <ama...@us...> - 2003-08-11 11:21:36
|
Update of /cvsroot/binaryphp/binaryphp/tests/arrays In directory sc8-pr-cvs1:/tmp/cvs-serv5374/tests/arrays Added Files: count.php implode.php in_array.php ksort.php Log Message: Added more tests. Now have all tests for the 'arrays' and 'base' section done. --- NEW FILE: count.php --- <?php $array = array(1, 2, 3, 4); echo count($array); ?> --- NEW FILE: implode.php --- <?php $array = array('This', 'is', 'a', 'test.'); echo implode(' ', $array); ?> --- NEW FILE: in_array.php --- <?php $array = array(1, 2, 3, 4); if(in_array(1, $array)) echo 'Element found.'; ?> --- NEW FILE: ksort.php --- <?php $fruits = array('d' => 'lemon', 'a' => 'orange', 'b' => 'banana', 'c' => 'apple'); ksort ($fruits); echo implode("\n", $fruits); ?> |