summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/003.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/003.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/003.phpt')
-rw-r--r--ext/standard/tests/array/003.phpt104
1 files changed, 104 insertions, 0 deletions
diff --git a/ext/standard/tests/array/003.phpt b/ext/standard/tests/array/003.phpt
new file mode 100644
index 0000000..f307186
--- /dev/null
+++ b/ext/standard/tests/array/003.phpt
@@ -0,0 +1,104 @@
+--TEST--
+Test usort, uksort and uasort
+--INI--
+precision=14
+--FILE--
+<?php
+require(dirname(__FILE__) . '/data.inc');
+
+function cmp ($a, $b) {
+ is_array ($a)
+ and $a = array_sum ($a);
+ is_array ($b)
+ and $b = array_sum ($b);
+ return strcmp ($a, $b);
+}
+
+echo " -- Testing uasort() -- \n";
+uasort ($data, 'cmp');
+var_dump ($data);
+
+
+echo "\n -- Testing uksort() -- \n";
+uksort ($data, 'cmp');
+var_dump ($data);
+
+echo "\n -- Testing usort() -- \n";
+usort ($data, 'cmp');
+var_dump ($data);
+?>
+--EXPECT--
+-- Testing uasort() --
+array(8) {
+ [16777216]=>
+ float(-0.33333333333333)
+ [-1000]=>
+ array(2) {
+ [0]=>
+ string(6) "banana"
+ [1]=>
+ string(6) "orange"
+ }
+ ["test"]=>
+ int(27)
+ [0]=>
+ string(3) "PHP"
+ [17]=>
+ string(27) "PHP: Hypertext Preprocessor"
+ [5]=>
+ string(4) "Test"
+ [1001]=>
+ string(6) "monkey"
+ [1000]=>
+ string(4) "test"
+}
+
+ -- Testing uksort() --
+array(8) {
+ [-1000]=>
+ array(2) {
+ [0]=>
+ string(6) "banana"
+ [1]=>
+ string(6) "orange"
+ }
+ [0]=>
+ string(3) "PHP"
+ [1000]=>
+ string(4) "test"
+ [1001]=>
+ string(6) "monkey"
+ [16777216]=>
+ float(-0.33333333333333)
+ [17]=>
+ string(27) "PHP: Hypertext Preprocessor"
+ [5]=>
+ string(4) "Test"
+ ["test"]=>
+ int(27)
+}
+
+ -- Testing usort() --
+array(8) {
+ [0]=>
+ float(-0.33333333333333)
+ [1]=>
+ array(2) {
+ [0]=>
+ string(6) "banana"
+ [1]=>
+ string(6) "orange"
+ }
+ [2]=>
+ int(27)
+ [3]=>
+ string(3) "PHP"
+ [4]=>
+ string(27) "PHP: Hypertext Preprocessor"
+ [5]=>
+ string(4) "Test"
+ [6]=>
+ string(6) "monkey"
+ [7]=>
+ string(4) "test"
+}