From d613f8ed085eed2c258cc06aaf83d1276cc6d7d7 Mon Sep 17 00:00:00 2001 From: Lynn Date: Tue, 12 Jan 2016 12:02:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 对应的源码文件应该是: {PHP_SOURCE_ROOT}/Zend/zend_vm_execute.h --- book/chapt07/07-03-opcode-exec.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/chapt07/07-03-opcode-exec.markdown b/book/chapt07/07-03-opcode-exec.markdown index cddbab7f..d82c85a5 100644 --- a/book/chapt07/07-03-opcode-exec.markdown +++ b/book/chapt07/07-03-opcode-exec.markdown @@ -41,7 +41,7 @@ 比如在APC等opcode优化扩展中就是通过替换系统默认的zend_compile_file函数指针为自己的函数指针my_compile_file, 并且在my_compile_file中增加缓存等功能。 -到这里我们找到了中间代码执行的最终函数:execute(Zend/zend_vm_execure.h)。 +到这里我们找到了中间代码执行的最终函数:execute(Zend/zend_vm_execute.h)。 在这个函数中所有的中间代码的执行最终都会调用handler。这个handler是什么呢? [c] @@ -323,4 +323,4 @@ zend_vm_stack_free函数的实现存在于Zend/zend_execute.h文件,它的作 [opcode-handler]: ?p=chapt02/02-03-03-from-opcode-to-handler [function-return]: ?p=chapt04/04-02-03-function-return [var-scope]: ?p=chapt03/03-06-02-var-scope -[function-return]: ?p=chapt04/04-02-03-function-return \ No newline at end of file +[function-return]: ?p=chapt04/04-02-03-function-return