Opcode
PHP Manual

DECLARE_CLASS

PHP 代码

<?php
/*
 * Declare a class with the name of class-name as the implementation specified by ID.
 * Opcode 编号: 139
 */
class {
    function 
methodA(){
        echo 
"hello world";
    }
}
?>

PHP Opcode

函数名: (null)

编译后的变量: none

行号#操作 读取扩展返回 操作数
60 NOP      
111 RETURN     1

函数名: methodA

编译后的变量: none

行号#操作 读取扩展返回 操作数
80 ECHO     'hello+world'
91 RETURN     null

Opcode
PHP Manual