summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/uasort_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/uasort_error.phpt')
-rw-r--r--ext/standard/tests/array/uasort_error.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/array/uasort_error.phpt b/ext/standard/tests/array/uasort_error.phpt
index cc2dd3a217..a517e4a511 100644
--- a/ext/standard/tests/array/uasort_error.phpt
+++ b/ext/standard/tests/array/uasort_error.phpt
@@ -1,15 +1,15 @@
--TEST--
-Test uasort() function : error conditions
+Test uasort() function : error conditions
--FILE--
<?php
/* Prototype : bool uasort(array $array_arg, string $cmp_function)
- * Description: Sort an array with a user-defined comparison function and maintain index association
+ * Description: Sort an array with a user-defined comparison function and maintain index association
* Source code: ext/standard/array.c
*/
echo "*** Testing uasort() : error conditions ***\n";
-// comparison function
+// comparison function
/* Prototype : int cmp(mixed $value1, mixed $value2)
* Parameters : $value1 and $value2 - values to be compared
* Return value : 0 - if both values are same
@@ -30,7 +30,7 @@ function cmp($value1, $value2)
}
}
-// Initialize 'array_arg'
+// Initialize 'array_arg'
$array_arg = array(0 => 1, 1 => 10, 2 => 'string', 3 => 3, 4 => 2, 5 => 100, 6 => 25);
// With zero arguments