Opcode
PHP Manual

BRK

PHP 代码

<?php
/*
 * ???  End of a case block exists the current switch block.  Followed by JMP?
 * Opcode 编号: 50
 */
$x 0;
while(
1) {
    if(
$x == 0) break;
}
?>

PHP Opcode

函数名: (null)

编译后的变量: !0=$x

行号#操作 读取扩展返回 操作数
60 ASSIGN     !0,0
71 JMPZ     1,->7
82 IS_EQUAL   ~1 !0,0
 3 JMPZ     ~1,->6
 4 BRK     1
 5 JMP     ->6
96 JMP     ->1
107 RETURN     1

Opcode
PHP Manual