andrei          Thu Jul 13 22:03:43 2006 UTC

  Modified files:              
    /php-src    unicode-progress.txt 
    /php-src/ext/standard       array.c 
  Log:
  Mark a few more funcs.
  
  
http://cvs.php.net/viewvc.cgi/php-src/unicode-progress.txt?r1=1.14&r2=1.15&diff_format=u
Index: php-src/unicode-progress.txt
diff -u php-src/unicode-progress.txt:1.14 php-src/unicode-progress.txt:1.15
--- php-src/unicode-progress.txt:1.14   Thu Jul 13 21:27:48 2006
+++ php-src/unicode-progress.txt        Thu Jul 13 22:03:42 2006
@@ -104,11 +104,8 @@
         Params API
         Either port strnatcmp() to support Unicode or maybe use ICU's numeric 
collation
 
-    sort(), rsort()
-    asort(), arsort()
-    ksort(), krsort() 
     usort(), uasort(), uksort()
-        Test, make sure SORT_LOCALE_STRING uses default collator
+        function name normalization, FCI cache
 
 
   Completed
@@ -126,6 +123,10 @@
     range()
     shuffle()
 
+    sort(), rsort()
+    asort(), arsort()
+    ksort(), krsort() 
+
 
   string.c
   --------
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/array.c?r1=1.352&r2=1.353&diff_format=u
Index: php-src/ext/standard/array.c
diff -u php-src/ext/standard/array.c:1.352 php-src/ext/standard/array.c:1.353
--- php-src/ext/standard/array.c:1.352  Thu Jul 13 21:27:48 2006
+++ php-src/ext/standard/array.c        Thu Jul 13 22:03:42 2006
@@ -21,7 +21,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: array.c,v 1.352 2006/07/13 21:27:48 andrei Exp $ */
+/* $Id: array.c,v 1.353 2006/07/13 22:03:42 andrei Exp $ */
 
 #include "php.h"
 #include "php_ini.h"
@@ -225,7 +225,7 @@
        return array_key_compare(a, b TSRMLS_CC) * -1;
 }
 
-/* {{{ proto bool krsort(array &array_arg [, int sort_flags])
+/* {{{ proto bool krsort(array &array_arg [, int sort_flags]) U
    Sort an array by key value in reverse order */
 PHP_FUNCTION(krsort)
 {
@@ -247,7 +247,7 @@
 }
 /* }}} */
 
-/* {{{ proto bool ksort(array &array_arg [, int sort_flags])
+/* {{{ proto bool ksort(array &array_arg [, int sort_flags]) U
    Sort an array by key */
 PHP_FUNCTION(ksort)
 {
@@ -478,7 +478,7 @@
 /* }}} */
 
 
-/* {{{ proto bool asort(array &array_arg [, int sort_flags])
+/* {{{ proto bool asort(array &array_arg [, int sort_flags]) U
    Sort an array and maintain index association */
 PHP_FUNCTION(asort)
 {
@@ -500,7 +500,7 @@
 }
 /* }}} */
 
-/* {{{ proto bool arsort(array &array_arg [, int sort_flags])
+/* {{{ proto bool arsort(array &array_arg [, int sort_flags]) U
    Sort an array in reverse order and maintain index association */
 PHP_FUNCTION(arsort)
 {
@@ -522,7 +522,7 @@
 }
 /* }}} */
 
-/* {{{ proto bool sort(array &array_arg [, int sort_flags])
+/* {{{ proto bool sort(array &array_arg [, int sort_flags]) U
    Sort an array */
 PHP_FUNCTION(sort)
 {
@@ -544,7 +544,7 @@
 }
 /* }}} */
 
-/* {{{ proto bool rsort(array &array_arg [, int sort_flags])
+/* {{{ proto bool rsort(array &array_arg [, int sort_flags]) U
    Sort an array in reverse order */
 PHP_FUNCTION(rsort)
 {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to