You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
@gadiener Why? The error notice is already suppressed by the @ operator.
As of PHP 4.3.3, calling session_start() after the session was previously started will result in an error of level E_NOTICE. Also, the second session start will simply be ignored.
The reason will be displayed to describe this comment to others. Learn more.
@lastguest While using the @ operator, if you have set up a custom error handling function with set_error_handler(), the error handler will still be called. if you're using an automatic error reporter (like Sentry) this can report unexpected errors.
ca4798f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gadiener Why? The error notice is already suppressed by the
@
operator.ca4798f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lastguest While using the
@
operator, if you have set up a custom error handling function with set_error_handler(), the error handler will still be called. if you're using an automatic error reporter (like Sentry) this can report unexpected errors.