CONT

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 fetchextreturn operands
60 ASSIGN     !0, false
71 BOOL_NOT   ~1 !0
 2 JMPZ     ~1, ->5
83 ASSIGN     !0, true
94 CONT     1
105 JMP     ->1
126 RETURN     1
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top