summaryrefslogtreecommitdiff
path: root/Zend/zend_builtin_functions.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2015-06-22 10:17:35 +0200
committerBob Weinand <bobwei9@hotmail.com>2015-06-22 10:17:35 +0200
commitdb6990a91b2ca931074b29886c7f7819b14bb021 (patch)
treeae6c760ff8876a4d45f7001ce1f9c7917f169970 /Zend/zend_builtin_functions.c
parent19fd124bcf2380f8e928795d1fe1900a02635298 (diff)
downloadphp-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.c4
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;