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
The following code:
<?php $d = new DateInterval('P2Y4DT6H8M'); $fusion = $d; $u = [[]]; $fusion->__unserialize($u);
Resulted in this output:
/php-src/ext/date/php_date.c:4841: void restore_custom_dateinterval_properties(zval *, HashTable *): Assertion `!(((__ht)->u.flags & (1<<2)) != 0)' failed. Aborted (core dumped)
PHP 8.4.0-dev
ubuntu 22.04
The text was updated successfully, but these errors were encountered:
Minimal reproduction:
<?php new DateInterval('P1Y')->__unserialize([[]]);
Sorry, something went wrong.
Fixed bug phpGH-16037 (Assertion failure in ext/date/php_date.c)
71e09c0
b2b294a
derickr
No branches or pull requests
Description
The following code:
Resulted in this output:
PHP Version
PHP 8.4.0-dev
Operating System
ubuntu 22.04
The text was updated successfully, but these errors were encountered: