diff options
author | Andrey Hristov <andrey@php.net> | 1999-09-07 19:41:28 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-09-07 19:41:28 +0000 |
commit | 6101d108e019389390c300ddefd25bd46f6a0627 (patch) | |
tree | 06c17b811576987d6a81364ac311324155b5d7e4 | |
parent | 06362129fa680fb26fe0ecb5eab2489c9a31959c (diff) | |
download | php-git-6101d108e019389390c300ddefd25bd46f6a0627.tar.gz |
Here you go, Egon.
-rw-r--r-- | ext/standard/basic_functions.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 62a429ee28..79034c447b 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -3141,8 +3141,9 @@ PHP_FUNCTION(array_merge) /* }}} */ -/* {{{ proto array array_keys(array input) - Return just the keys from the input array */ +/* {{{ proto array array_keys(array input [, mixed search_value]) + Return just the keys from the input array, optionally only + for the specified search_value */ PHP_FUNCTION(array_keys) { zval *input, /* Input array */ |