From 00b0b64b1a2bbffd5fc63b7a393a594b47e87d0a Mon Sep 17 00:00:00 2001 From: Dallas Wang Date: Sun, 17 Aug 2003 06:15:41 +0000 Subject: [PATCH] Fixing bug #25113. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@138048 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/usort.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/array/functions/usort.xml b/reference/array/functions/usort.xml index eedf7844f6..0862a6929b 100644 --- a/reference/array/functions/usort.xml +++ b/reference/array/functions/usort.xml @@ -1,5 +1,5 @@ - + @@ -25,7 +25,7 @@ The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the - second. + second. @@ -149,7 +149,7 @@ $a[] = new TestObj("c"); $a[] = new TestObj("b"); $a[] = new TestObj("d"); -uasort($a, array ("TestObj", "cmp_obj")); +usort($a, array ("TestObj", "cmp_obj")); foreach ($a as $item) { print $item->name."\n";