Php/docs/internals2.opcodes.cont

提供:Dev Guides
< Php
移動先:案内検索

CONT

PHP コード

<?php /* * Continue next iteration of current loop level * opcode number: 51 */$foo = false;while(!$foo) {    $foo = true;    continue;}?>

PHP オペコード

関数名: (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