Opcode
PHP Manual

INIT_ARRAY

PHP 代码

<?php
/*
 * Allocate a new array with elem-value as the first element of the array.  Followed by ADD_ARRAY_ELEMENT.
 * Opcode 编号: 71
 */
$a = array(1,2,3);
print_r($a);
?>

PHP Opcode

函数名: (null)

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

行号#操作 读取扩展返回 操作数
60 INIT_ARRAY   ~0 1
 1 ADD_ARRAY_ELEMENT   ~0 2
 2 ADD_ARRAY_ELEMENT   ~0 3
 3 ASSIGN     !0,~0
74 SEND_VAR     !0
 5 DO_FCALL  1  'print_r'
86 RETURN     1

Opcode
PHP Manual