Opcode
PHP Manual

PRE_INC

PHP 代码

<?php
/*
 * increments variable indicated by value1 by 1 (before performing other operations) and stores in result
 * Opcode 编号: 34
 */
++$a;
?>

PHP Opcode

函数名: (null)

编译后的变量: !0=$a

行号#操作 读取扩展返回 操作数
60 PRE_INC     !0
71 RETURN     1

Opcode
PHP Manual