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
flags
https://www.php.net/manual/ja/function.htmlspecialchars.php
PHP 8.1 で、htmlspecialchars 関連の関数のデフォルト値は、ENT_COMPAT から ENT_QUOTES | ENT_SUBSTITUTE に変更され、マニュアルにもそれが反映されている。
htmlspecialchars
ENT_COMPAT
ENT_QUOTES | ENT_SUBSTITUTE
だが、flags パラメータのデフォルト値の説明は、以下のように ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 となっている。
ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401
The text was updated successfully, but these errors were encountered:
現状、本件は下記の状況であり、修正が進行中であるが、時間がかかりそうな模様。
Sorry, something went wrong.
relates to: php/doc-en#1042
Fixed by d143b83 and php/doc-en@e4b5274 . Thank you for great fix, @saundefined !
No branches or pull requests
https://www.php.net/manual/ja/function.htmlspecialchars.php
PHP 8.1 で、
htmlspecialchars
関連の関数のデフォルト値は、ENT_COMPAT
からENT_QUOTES | ENT_SUBSTITUTE
に変更され、マニュアルにもそれが反映されている。だが、
flags
パラメータのデフォルト値の説明は、以下のようにENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401
となっている。The text was updated successfully, but these errors were encountered: