summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/rsort_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/rsort_basic.phpt')
-rw-r--r--ext/standard/tests/array/rsort_basic.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/array/rsort_basic.phpt b/ext/standard/tests/array/rsort_basic.phpt
index 34fcbb7034..9d11b022b7 100644
--- a/ext/standard/tests/array/rsort_basic.phpt
+++ b/ext/standard/tests/array/rsort_basic.phpt
@@ -1,9 +1,9 @@
--TEST--
-Test rsort() function : basic functionality
+Test rsort() function : basic functionality
--FILE--
<?php
/* Prototype : bool rsort(array &$array_arg [, int $sort_flags])
- * Description: Sort an array in reverse order
+ * Description: Sort an array in reverse order
* Source code: ext/standard/array.c
*/
@@ -13,13 +13,13 @@ Test rsort() function : basic functionality
echo "*** Testing rsort() : basic functionality ***\n";
-// associative array containing unsorted string values
+// associative array containing unsorted string values
$unsorted_strings = array(
"l" => "lemon", "o" => "orange",
"O" => "Orange", "O1" => "Orange1", "o2" => "orange2", "O3" => "Orange3", "o20" => "orange20",
"b" => "banana",
);
-
+
// array with default keys containing unsorted numeric values
$unsorted_numerics = array( 100, 33, 555, 22 );