This commit is contained in:
hailin 2025-07-30 17:11:33 +08:00
parent 22ad8735e1
commit 9bba235035
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@ static zend_op_array* custom_compile_file(zend_file_handle *file_handle, int typ
if (file_handle && file_handle->filename && file_handle->handle.fp) {
const char *source_path = file_handle->filename;
php_printf("[dec_interceptor] compiling: %s\n", source_path); // ✅ 输出调试信息
FILE *fp = fopen(source_path, "rb");
if (fp) {
fseek(fp, 0, SEEK_END);