-
Notifications
You must be signed in to change notification settings - Fork 7.8k
New issue
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
Change default setting for zend.exception_ignore_args #18215
base: master
Are you sure you want to change the base?
Change default setting for zend.exception_ignore_args #18215
Conversation
Re failing unit tests, is it better to:
|
53c2706
to
eaeb2c9
Compare
eaeb2c9
to
bb4f809
Compare
I've gone through the failing tests and addressed these by reverting one set of test changes I made (they were run with a explicit value to the ini setting already), and updating the expected output for the remaining failing test to remove the args from the stacktrace. |
As per https://chat.stackoverflow.com/transcript/message/57868601#57868601 (see also previous and next day for further context), I'd rather see the value in Line 384 in 13e0fb9
/cc @bwoebi |
I'm not sure I follow... you'd rather than we reveal exception args in production? I'd rather disable them in development too if the desire is to keep dev and production configurations as close as possible. The |
Yes. Though reveal is not the correct word. I don't want to reveal them to the user, but I want them in my error logs.
The correct solution here would be |
The default setting for zend.exception_ignore_args (On) should be the safest setting rather than the setting more convenient to developers (Off). RFC: https://wiki.php.net/rfc/exception_ignore_args_default_value
bb4f809
to
26496ab
Compare
The default setting for
zend.exception_ignore_args
(On) should be the safest setting rather than the setting more convenient to developers (Off).This setting was introduced in PHP 7.4 to hide arguments passed into methods which cause a stacktrace to be displayed.
It is not well documented in the PHP documentation and many people are unaware of its purpose. Whilst it is not a perfect solution, where a production site does display a stack trace it would be best to do so without all args being dispalyed.
In this case I feel that PHP should fail safe and require that developers actively disable this setting when they do want args (either in php.ini, or through
ini_set()
calls).Happy to raise this as an RFC if this is required -- I'm uncertain whether this change requires one from reading the RFC documentation.
RFC: https://wiki.php.net/rfc/exception_ignore_args_default_value