编程学问
  • 文章
  • 问题
  • 读书
  • 关于
  • 登录
  • « CONCAT
  • DECLARE_CLASS »
  • PHP Manual
  • Opcode Descriptions and Examples
  • CONT

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 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
相关文章
php opcode descriptions and examples add charphp opcode descriptions and examples add interfacephp opcode descriptions and examples add stringphp opcode descriptions and examples assign slphp opcode descriptions and examples assign srphp opcode descriptions and examples clonephp opcode descriptions and examples concatphp opcode descriptions and examples contphp opcode descriptions and examples ext nopphp opcode descriptions and examples ext stmtphp opcode descriptions and examples fetch obj isphp opcode descriptions and examples fetch obj rphp opcode descriptions and examples init ns fcall by namephp opcode descriptions and examples init static method callphp opcode descriptions and examples jmpz exphp opcode descriptions and examples jmpzphp opcode descriptions and examples pre incphp opcode descriptions and examples printphp opcode descriptions and examples throwphp opcode descriptions and examples ticks
关注编程学问公众号
编程学问网 湘ICP备20001732号