diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-08-04 09:19:38 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-08-04 09:19:38 +0000 |
commit | 6a93f284bc35c9ce4c4c92166c81426faf608d07 (patch) | |
tree | d21bb23b01f038ac4bf985c1cf98c97f1264e5c2 /ext/standard | |
parent | 562e83bc6d5c1e6a98e6216e638251110053ac4d (diff) | |
download | php-git-6a93f284bc35c9ce4c4c92166c81426faf608d07.tar.gz |
added new second parameter to osrt functions in the protos
Diffstat (limited to 'ext/standard')
-rw-r--r-- | ext/standard/array.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c index 4f6e1645e3..2970fb85ed 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -172,7 +172,7 @@ static int array_reverse_key_compare(const void *a, const void *b) return array_key_compare(a,b)*-1; } -/* {{{ proto int krsort(array array_arg) +/* {{{ proto int krsort(array array_arg, int sort_flags) Sort an array reverse by key */ PHP_FUNCTION(krsort) { @@ -201,7 +201,7 @@ PHP_FUNCTION(krsort) } /* }}} */ -/* {{{ proto int ksort(array array_arg) +/* {{{ proto int ksort(array array_arg, int sort_flags) Sort an array by key */ PHP_FUNCTION(ksort) { @@ -393,7 +393,7 @@ PHP_FUNCTION(natcasesort) /* }}} */ -/* {{{ proto void asort(array array_arg) +/* {{{ proto void asort(array array_arg, int sort_flags) Sort an array and maintain index association */ PHP_FUNCTION(asort) { @@ -422,7 +422,7 @@ PHP_FUNCTION(asort) } /* }}} */ -/* {{{ proto void arsort(array array_arg) +/* {{{ proto void arsort(array array_arg, int sort_flags) Sort an array in reverse order and maintain index association */ PHP_FUNCTION(arsort) { @@ -451,7 +451,7 @@ PHP_FUNCTION(arsort) } /* }}} */ -/* {{{ proto void sort(array array_arg) +/* {{{ proto void sort(array array_arg, int sort_flags) Sort an array */ PHP_FUNCTION(sort) { @@ -480,7 +480,7 @@ PHP_FUNCTION(sort) } /* }}} */ -/* {{{ proto void rsort(array array_arg) +/* {{{ proto void rsort(array array_arg, int sort_flags) Sort an array in reverse order */ PHP_FUNCTION(rsort) { |