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 dl("dl_test.so"); var_dump(ini_get("test_test.long"));
Resulted in this output:
bool(false)
But I expected this output instead:
string(1) "0"
This happens when opcache is enabled.
PHP 8.1
No response
The text was updated successfully, but these errors were encountered:
Do not optimize out ini_get() when the entry does not exist
ce94ae3
The entry may exist later Fixes phpGH-8466
3bcb969
332bd03
Do not optimize out ini_get() when the entry does not exist during co…
33b8ef9
…mpilation (#8507) The entry may exist later if dl is enabled Fixes GH-8466
arnaud-lb
Successfully merging a pull request may close this issue.
Description
The following code:
Resulted in this output:
But I expected this output instead:
This happens when opcache is enabled.
PHP Version
PHP 8.1
Operating System
No response
The text was updated successfully, but these errors were encountered: