This commit is contained in:
parent
22ad8735e1
commit
9bba235035
|
|
@ -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) {
|
if (file_handle && file_handle->filename && file_handle->handle.fp) {
|
||||||
const char *source_path = file_handle->filename;
|
const char *source_path = file_handle->filename;
|
||||||
|
|
||||||
|
php_printf("[dec_interceptor] compiling: %s\n", source_path); // ✅ 输出调试信息
|
||||||
|
|
||||||
FILE *fp = fopen(source_path, "rb");
|
FILE *fp = fopen(source_path, "rb");
|
||||||
if (fp) {
|
if (fp) {
|
||||||
fseek(fp, 0, SEEK_END);
|
fseek(fp, 0, SEEK_END);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue