Opcode
PHP Manual

INCLUDE_OR_EVAL

PHP 代码

<?php
/*
 * Include the file specified by filename and eval it.
 * Opcode 编号: 73
 */
include("test.php");
eval(
"test.php");
?>

PHP Opcode

函数名: (null)

编译后的变量: none

行号#操作 读取扩展返回 操作数
60 INCLUDE_OR_EVAL     'test.php',INCLUDE
71 INCLUDE_OR_EVAL     'test.php',EVAL
82 RETURN     1

函数名: (null)

编译后的变量: none

行号#操作 读取扩展返回 操作数
20 DO_FCALL  0  'phpinfo'
31 RETURN     1

Opcode
PHP Manual