summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/001.phpt
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2013-03-14 05:42:27 +0000
committer <>2013-04-03 16:25:08 +0000
commitc4dd7a1a684490673e25aaf4fabec5df138854c4 (patch)
tree4d57c44caae4480efff02b90b9be86f44bf25409 /ext/standard/tests/array/001.phpt
downloadphp2-master.tar.gz
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/standard/tests/array/001.phpt')
-rw-r--r--ext/standard/tests/array/001.phpt157
1 files changed, 157 insertions, 0 deletions
diff --git a/ext/standard/tests/array/001.phpt b/ext/standard/tests/array/001.phpt
new file mode 100644
index 0000000..797a797
--- /dev/null
+++ b/ext/standard/tests/array/001.phpt
@@ -0,0 +1,157 @@
+--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]=>
+ string(3) "PHP"
+ [1]=>
+ string(27) "PHP: Hypertext Preprocessor"
+ [2]=>
+ string(4) "Test"
+ ["test"]=>
+ int(27)
+ [3]=>
+ string(4) "test"
+ [4]=>
+ array(2) {
+ [0]=>
+ string(6) "banana"
+ [1]=>
+ string(6) "orange"
+ }
+ [5]=>
+ string(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)
+string(3) "PHP"
+int(1)
+string(27) "PHP: Hypertext Preprocessor"
+int(2)
+string(4) "Test"
+string(4) "test"
+int(27)
+int(3)
+string(4) "test"
+int(4)
+array(2) {
+ [0]=>
+ string(6) "banana"
+ [1]=>
+ string(6) "orange"
+}
+int(5)
+string(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)
+ }
+ }
+}