オペコードの説明とサンプル
PHP Manual

JMPZ

PHP コード

<?php
/*
 * Jump to the address if the value is zero
 * opcode number: 43
 */
if($a != 0) echo "foo";
?>

PHP オペコード

関数名: (null)

コンパイルされた変数: !0=$a

line#op fetchextreturn operands
60 IS_NOT_EQUAL   ~0 !0,0
 1 JMPZ     ~0,->4
 2 ECHO     'foo'
 3 JMP     ->4
74 RETURN     1

オペコードの説明とサンプル
PHP Manual