This commit is contained in:
hailin 2025-07-30 21:26:52 +08:00
parent ed3596c3fd
commit 3318921c00
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ zend_op_array *custom_compile_string(zend_string *source_string, zend_string *fi
/* Module initialization */ /* Module initialization */
PHP_MINIT_FUNCTION(dec_interceptor) PHP_MINIT_FUNCTION(dec_interceptor)
{ {
php_log_err("[dec_interceptor] MINIT ran");
original_compile_string = zend_compile_string; original_compile_string = zend_compile_string;
zend_compile_string = custom_compile_string; zend_compile_string = custom_compile_string;
return SUCCESS; return SUCCESS;