We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As noted in the RFC PHP 8.3 deprecates the second parameter to array_keys() to apply a filter.
array_keys()
The following uses of a second filter param to array_keys can be found in tcpdf:
array_keys
The suggestion is to combine array_keys and array_filter. A new method may be added in PHP 8.4 but does not exist yet.
library/HTMLPurifier/Lexer/PH5P.php: $marker = end(array_keys($this->a_formatting, self::MARKER, true)); maintenance/PH5P.php: $marker = end(array_keys($this->a_formatting, self::MARKER, true));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As noted in the RFC PHP 8.3 deprecates the second parameter to
array_keys()
to apply a filter.The following uses of a second filter param to
array_keys
can be found in tcpdf:The suggestion is to combine array_keys and array_filter. A new method may be added in PHP 8.4 but does not exist yet.
The text was updated successfully, but these errors were encountered: