Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18113 программистов и 1604 робота. Сейчас ищут 1248 программистов ...
CONT
Вернуться к: Opcode Descriptions and Examples
PHP code
<?php
/*
* Continue next iteration of current loop level
* opcode number: 51
*/
$foo = false;
while(!$foo) {
$foo = true;
continue;
}
?>
PHP opcodes
Function name: (null)
compiled vars: !0 = $foo
line | # | op | fetch | ext | return | operands |
---|---|---|---|---|---|---|
6 | 0 | ASSIGN | !0, false | |||
7 | 1 | BOOL_NOT | ~1 | !0 | ||
2 | JMPZ | ~1, ->5 | ||||
8 | 3 | ASSIGN | !0, true | |||
9 | 4 | CONT | 1 | |||
10 | 5 | JMP | ->1 | |||
12 | 6 | RETURN | 1 |
Вернуться к: Opcode Descriptions and Examples