Opcode
PHP Manual

PRE_DEC

PHP 代码

<?php
/*
 * decrements variable indicated by value1 by 1 (before performing other operations) and stores in results
 * Opcode 编号: 35
 */
--$a;
?>

PHP Opcode

函数名: (null)

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

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

Opcode
PHP Manual