Opcode
PHP Manual

RECV

PHP 代码

<?php
/*
 * Receive a functoin argument of "argument-number" and store the argument value into a variable of "argument-number".  (e.g. $1 for 1)
 * Opcode 编号: 63
 */
function hello($a){}
?>

PHP Opcode

函数名: (null)

编译后的变量: none

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

函数名: hello

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

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

Opcode
PHP Manual