<?php
/*
* Unset the variable and store the original value into "result".
* Opcode 编号: 74
*/
$x = 1;
$a='x';
unset($$a);
?>
函数名: (null)
编译后的变量: !0=$x, !1=$a
行号 | # | 操作 | 读取 | 扩展 | 返回 | 操作数 |
---|---|---|---|---|---|---|
6 | 0 | ASSIGN | !0,1 | |||
7 | 1 | ASSIGN | !1,'x' | |||
8 | 2 | UNSET_VAR | $2 | !1 | ||
9 | 3 | RETURN | 1 |