Opcode Descriptions and Examples
PHP Manual

JMP

PHP code

<?php 
/*
 * Unconditonally jump to the address
 * opcode number: 42
 */
$foo false;
while(!
$foo) {
    
$foo true;
}
?>

PHP opcodes

Function name: (null)

compiled vars: !0 = $foo

line#op fetchextreturn operands
60 ASSIGN     !0, false
71 BOOL_NOT   ~1 !0
 2 JMPZ     ~1, ->5
83 ASSIGN     !0, true
94 JMP     ->1
115 RETURN     1

Opcode Descriptions and Examples
PHP Manual