Opcode
PHP Manual

CONCAT

PHP 代码

<?php
/*
 * Concats string values string1 and string2
 * Opcode 编号: 8
 */
echo "hello" "world";
?>

PHP Opcode

函数名: (null)

编译后的变量: none

行号#操作 读取扩展返回 操作数
60 CONCAT   ~0 'hello','world'
 1 ECHO     ~0
72 RETURN     1

Opcode
PHP Manual