Opcode
PHP Manual

SEND_VAL

PHP 代码

<?php
/*
 * Pass the constant value as an actual parameter to a function.  DO_FCALL follows.
 * Opcode 编号: 65
 */
function funcA($msg){
    print 
$msg;
}

funcA('HELLO');

defined('IN_PHPBB');
?>

PHP Opcode

函数名: (null)

编译后的变量: none

行号#操作 读取扩展返回 操作数
60 NOP      
101 SEND_VAL     'HELLO'
 2 DO_FCALL  1  'funca'
123 SEND_VAL     'IN_PHPBB'
 4 DO_FCALL  1  'defined'
135 RETURN     1

函数名: funcA

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

行号#操作 读取扩展返回 操作数
60 RECV     1
71 PRINT   ~0 !0
 2 FREE     ~0
83 RETURN     null

Opcode
PHP Manual