]> granicus.if.org Git - php/commitdiff
MFH: New array_multisort() test (Simon Westcott)
authorChristopher Jones <sixd@php.net>
Fri, 15 May 2009 16:47:36 +0000 (16:47 +0000)
committerChristopher Jones <sixd@php.net>
Fri, 15 May 2009 16:47:36 +0000 (16:47 +0000)
ext/standard/tests/array/array_multisort_variation11.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/array/array_multisort_variation11.phpt b/ext/standard/tests/array/array_multisort_variation11.phpt
new file mode 100644 (file)
index 0000000..520dd3d
--- /dev/null
@@ -0,0 +1,21 @@
+--TEST--
+Test array_multisort() function : usage variation - testing with empty array
+--FILE--
+<?php
+/* Prototype  : bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...])
+ * Description: Sort multiple arrays at once similar to how ORDER BY clause works in SQL
+ * Source code: ext/standard/array.c
+ * Alias to functions:
+ */
+
+echo "*** Testing array_multisort() : Testing with empty array ***\n";
+
+var_dump(array_multisort(array()));
+
+?>
+===DONE===
+<?php exit(0); ?>
+--EXPECTF--
+*** Testing array_multisort() : Testing with empty array ***
+bool(true)
+===DONE===