Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext/standard/array.c
Original file line number Diff line number Diff line change
Expand Up @@ -6699,7 +6699,7 @@ PHP_FUNCTION(array_find_key)
}
/* }}} */

/* {{{ Search within an array and returns true if an element is found. */
/* {{{ Checks if at least one array element satisfies a callback function. */
PHP_FUNCTION(array_any)
{
zval *array = NULL;
Expand All @@ -6719,7 +6719,7 @@ PHP_FUNCTION(array_any)
}
/* }}} */

/* {{{ Search within an array and returns true if an element is found. */
/* {{{ Checks if all array elements satisfy a callback function. */
PHP_FUNCTION(array_all)
{
zval *array = NULL;
Expand Down