php-src/ext/standard/tests/array/001.phpt
Steph Fox 833f4150a1 - killed off UEXPECT
- could someone please fix var_export2.phpt? NUL is corrupted, can't fix here
2008-05-26 23:36:10 +00:00

158 lines
2.2 KiB
PHP

--TEST--
Test array_merge and array_walk
--INI--
precision=14
--FILE--
<?php
require(dirname(__FILE__) . '/data.inc');
/*
** Create sample arrays
** Test alpha, numeric (decimal, hex, octal) and special data
**
**
*/
/* Helper function to build testing arrays */
function make_nested_array ($depth, $breadth, $function = NULL, $args = array ()) {
for ($x = 0; $x < $breadth; ++$x) {
if (NULL === $function) {
$array = array (0);
} else {
$array = array (call_user_func_array ($function, $args));
}
for ($y = 1; $y < $depth; ++$y) {
$array[0] = array ($array[0]);
}
$temp[$x] = $array;
}
return $temp;
}
/* Nested array */
$data2 = make_nested_array (3, 3);
$data = array_merge($data, $data2);
var_dump ($data);
function echo_kv ($value, $key) {
var_dump ($key);
var_dump ($value);
}
echo " -- Testing array_walk() -- \n";
array_walk ($data, 'echo_kv');
?>
--EXPECT--
array(11) {
[0]=>
unicode(3) "PHP"
[1]=>
unicode(27) "PHP: Hypertext Preprocessor"
[2]=>
unicode(4) "Test"
[u"test"]=>
int(27)
[3]=>
unicode(4) "test"
[4]=>
array(2) {
[0]=>
unicode(6) "banana"
[1]=>
unicode(6) "orange"
}
[5]=>
unicode(6) "monkey"
[6]=>
float(-0.33333333333333)
[7]=>
array(1) {
[0]=>
array(1) {
[0]=>
array(1) {
[0]=>
int(0)
}
}
}
[8]=>
array(1) {
[0]=>
array(1) {
[0]=>
array(1) {
[0]=>
int(0)
}
}
}
[9]=>
array(1) {
[0]=>
array(1) {
[0]=>
array(1) {
[0]=>
int(0)
}
}
}
}
-- Testing array_walk() --
int(0)
unicode(3) "PHP"
int(1)
unicode(27) "PHP: Hypertext Preprocessor"
int(2)
unicode(4) "Test"
unicode(4) "test"
int(27)
int(3)
unicode(4) "test"
int(4)
array(2) {
[0]=>
unicode(6) "banana"
[1]=>
unicode(6) "orange"
}
int(5)
unicode(6) "monkey"
int(6)
float(-0.33333333333333)
int(7)
array(1) {
[0]=>
array(1) {
[0]=>
array(1) {
[0]=>
int(0)
}
}
}
int(8)
array(1) {
[0]=>
array(1) {
[0]=>
array(1) {
[0]=>
int(0)
}
}
}
int(9)
array(1) {
[0]=>
array(1) {
[0]=>
array(1) {
[0]=>
int(0)
}
}
}