Merge branch 'PHP-8.4'

* PHP-8.4:
  [skip ci] Fix array_any() and array_all() descriptions
This commit is contained in:
Christoph M. Becker 2024-11-08 20:02:32 +01:00
commit f3203f3409
No known key found for this signature in database
GPG key ID: D66C9593118BCCB6

View file

@ -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;