diff options
author | Andrei Zmievski <andrei@php.net> | 2000-07-17 13:37:26 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2000-07-17 13:37:26 +0000 |
commit | 8f96ea6b20f58e79583629e8bd5cb27e26dccb7a (patch) | |
tree | 568aabceed056c8688426e9c28ffd0499748505f | |
parent | 7b9d2e33bf6acbc90658d4f97ad9297d33f35208 (diff) | |
download | php-git-8f96ea6b20f58e79583629e8bd5cb27e26dccb7a.tar.gz |
*** empty log message ***
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | ext/standard/array.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -18,7 +18,7 @@ PHP 4.0 NEWS parameter was specified. - Use dashes and short day name in cookies since some browsers seem picky about this (Rasmus) -- Making pspell compile as a shared module +- Added pspell module. (Vlad) - Added 3 additional arguments to the user-defined error handler - the file name and line number in which the error occured, and the context (local variables) of the code in which the error occured (Zeev, Zend Engine) diff --git a/ext/standard/array.c b/ext/standard/array.c index cc2b1b844e..63c9362798 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -2425,7 +2425,7 @@ int multisort_compare(const void *a, const void *b) efree(args); \ RETURN_FALSE; -/* {{{ proto bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC] [, array ar2 [, SORT_ASC|SORT_DESC], ...]) +/* {{{ proto bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...]) Sort multiple arrays at once similar to how ORDER BY clause works in SQL */ PHP_FUNCTION(array_multisort) { |