-
-
Notifications
You must be signed in to change notification settings - Fork 466
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
ZEPHIR_CALL_CE_STATIC_ZVAL is missing in ZendEngine3 #1622
Labels
Comments
@xEsk Could you please provide minimal code to reproduce |
class Test1
{
public static function foo()
{
return "hello";
}
} Simple test code: var aClass = "Test1";
var method = "foo";
echo {aClass}::{method}(); |
Fixed in the |
Great! Good job! :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The ZEPHIR_CALL_CE_STATIC_ZVAL macro is missing in fcall.h (ZendEngine3), causing this error when trying to execute the extension:
I'm using the latest zephir (development) version.
The text was updated successfully, but these errors were encountered: