mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.4'
* PHP-8.4: [skip ci] Fix array_any() and array_all() descriptions
This commit is contained in:
commit
f3203f3409
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue