Opcode
PHP Manual

UNSET_VAR

PHP 代码

<?php
/*
 * Unset the variable and store the original value into "result".
 * Opcode 编号: 74
 */
$x 1;
$a='x';
unset($
$a);
?>

PHP Opcode

函数名: (null)

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

行号#操作 读取扩展返回 操作数
60 ASSIGN     !0,1
71 ASSIGN     !1,'x'
82 UNSET_VAR   $2 !1
93 RETURN     1

Opcode
PHP Manual