Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18260 программистов и 1698 роботов. Сейчас ищет 651 программист ...
ADD_INTERFACE
Вернуться к: Opcode Descriptions and Examples
PHP code
<?php
/*
* adds an implemented interface to a class declaration
* opcode number: 144
*/
interface iA {
}
class A implements iA {
}
?>
PHP opcodes
Function name: (null)
Compiled variables: none
line | # | op | fetch | ext | return | operands |
---|---|---|---|---|---|---|
6 | 0 | NOP | ||||
1 | DECLARE_CLASS | 'a' | ||||
2 | ADD_INTERFACE | 'iA' | ||||
3 | VERIFY_ABSTRACT_CLASS | |||||
3 | RETURN | 1 |
Вернуться к: Opcode Descriptions and Examples