Opcode
PHP Manual

RECV_INIT

PHP 代码

<?php
/*
 * Initialize a function argument with "value" if not received from caller.  Otherwise same as RECV.
 * Opcode 编号: 64
 */
function hello($a=5){}
?>

PHP Opcode

函数名: (null)

编译后的变量: none

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

函数名: hello

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

行号#操作 读取扩展返回 操作数
60 RECV_INIT     1,5
 1 RETURN     null

Opcode
PHP Manual