We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 function bar() {} var_dump(ini_set("zend_test.observer.observe_function_names", "bar"));
Resulted in this output:
/php-src/Zend/zend_observer.c:184:53: runtime error: applying zero offset to null pointer
But I expected this output instead:
-d "zend_test.observer.enabled=1"
nightly
ubuntu 22.04
The text was updated successfully, but these errors were encountered:
<?php function foo() { } function bar() { } foo(); bar(); ini_set("zend_test.observer.observe_function_names", "bar");
Zend/zend_observer.c:195: void zend_observer_add_begin_handler(zend_function *, zend_observer_fcall_begin_handler): Assertion `0' failed.
Sorry, something went wrong.
cmb69
No branches or pull requests
Description
The following code:
Resulted in this output:
But I expected this output instead:
PHP Version
nightly
Operating System
ubuntu 22.04
The text was updated successfully, but these errors were encountered: