You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation will cause JIT to be disabled on PHP 8.0, because OPcache doesn't like it when something overrides zend_execute_ex.
PHP 8.0 introduces a new Observer API which allows tracing enter/exit of functions without smashing the stack, and more importantly won't cause JIT to be disabled.
The text was updated successfully, but these errors were encountered:
Current implementation will cause JIT to be disabled on PHP 8.0, because OPcache doesn't like it when something overrides
zend_execute_ex
.PHP 8.0 introduces a new Observer API which allows tracing enter/exit of functions without smashing the stack, and more importantly won't cause JIT to be disabled.
The text was updated successfully, but these errors were encountered: