-
-
Notifications
You must be signed in to change notification settings - Fork 49
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
Build fails with PHP 8.4 #184
Comments
For what it's worth, see https://news-web.php.net/php.internals/124783, which has some hints on how to keep uopz compatible with PHP 8.4. |
For those looking for a quick way to build uopz with PHP 8.4: Applying this patch b2791e0 will make it possible to build, but |
In my opinion, it would be easier for uopz to declare that the uopz_add_function('exit', function () {});
uopz_add_function('die', function () {}); |
It seems to me that #185 is a nice solution. It works with PHP 8.4 like it worked before, but still users can use |
On PHP 8.4 the exit() RFC was implemented and the uopz needs to be adjusted.
Produces:
The text was updated successfully, but these errors were encountered: