Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18087 программистов и 1604 робота. Сейчас ищут 1232 программиста ...
DECLARE_CLASS
Вернуться к: Opcode Descriptions and Examples
PHP code
<?php
/*
* Declare a class with the name of class-name as the implementation specified by ID.
* opcode number: 139
*/
class A {
function methodA(){
echo "hello world";
}
}
?>
PHP opcodes
Function name: (null)
Compiled variables: none
line | # | op | fetch | ext | return | operands |
---|---|---|---|---|---|---|
6 | 0 | NOP | ||||
11 | 1 | RETURN | 1 |
Function name: methodA
Compiled variables: none
line | # | op | fetch | ext | return | operands |
---|---|---|---|---|---|---|
8 | 0 | ECHO | 'hello+world' | |||
9 | 1 | RETURN | null |
Вернуться к: Opcode Descriptions and Examples