diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-06-22 10:17:35 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-06-22 10:17:35 +0200 |
commit | db6990a91b2ca931074b29886c7f7819b14bb021 (patch) | |
tree | ae6c760ff8876a4d45f7001ce1f9c7917f169970 /Zend/zend_builtin_functions.c | |
parent | 19fd124bcf2380f8e928795d1fe1900a02635298 (diff) | |
download | php-git-db6990a91b2ca931074b29886c7f7819b14bb021.tar.gz |
Fix genarginfo to respect by-ref passing
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r-- | Zend/zend_builtin_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 98970e252a..08e78fdc33 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -738,8 +738,8 @@ ZEND_FUNCTION(strncasecmp) } /* }}} */ -/* {{{ proto array each(array arr) - Return the currently pointed key..value pair in the passed array, and advance the pointer to the next element */ +/* {{{ proto mixed each(array &arr) + Return the currently pointed key..value pair in the passed array, and advance the pointer to the next element, or false if there is no element at this place */ ZEND_FUNCTION(each) { zval *array, *entry, tmp; |