<?php
/*
* Initialize a function argument with "value" if not received from caller. Otherwise same as RECV.
* Opcode 编号: 64
*/
function hello($a=5){}
?>
函数名: (null)
编译后的变量: none
行号 | # | 操作 | 读取 | 扩展 | 返回 | 操作数 |
---|---|---|---|---|---|---|
6 | 0 | NOP | ||||
7 | 1 | RETURN | 1 |
函数名: hello
编译后的变量: !0=$a
行号 | # | 操作 | 读取 | 扩展 | 返回 | 操作数 |
---|---|---|---|---|---|---|
6 | 0 | RECV_INIT | 1,5 | |||
1 | RETURN | null |