summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/arsort_variation4.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/arsort_variation4.phpt')
-rw-r--r--ext/standard/tests/array/arsort_variation4.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/array/arsort_variation4.phpt b/ext/standard/tests/array/arsort_variation4.phpt
index a76a180f40..2d72a6d776 100644
--- a/ext/standard/tests/array/arsort_variation4.phpt
+++ b/ext/standard/tests/array/arsort_variation4.phpt
@@ -1,9 +1,9 @@
--TEST--
-Test arsort() function : usage variations - sort reference variables
+Test arsort() function : usage variations - sort reference variables
--FILE--
<?php
/* Prototype : bool arsort ( array &$array [, int $sort_flags] )
- * Description: Sort an array and maintain index association.
+ * Description: Sort an array and maintain index association.
Elements will be arranged from highest to lowest when this function has completed.
* Source code: ext/standard/array.c
*/
@@ -21,7 +21,7 @@ $value1 = 100;
$value2 = 33;
$value3 = 555;
-// an array containing integer references
+// an array containing integer references
$unsorted_numerics = array( 1 => &$value1 , 2 => &$value2, 3 => &$value3);
echo "\n-- Testing arsort() by supplying reference variable array, 'flag' value is defualt --\n";