Opcodes
PHP Manual

ADD_VAR

PHP code

<?php
/*
 * add contents of variable in value2 to string value1 and store in result
 * opcode number: 56
 */
echo "hello$a world";
?>

PHP opcodes

Function name: (null)

Compiled variables: !0=$a

line#op fetchextreturn operands
60 ADD_STRINGВ  В ~0 'hello'
В 1 ADD_VARВ  В ~0 ~0,!0
В 2 ADD_STRINGВ  В ~0 ~0,'+world'
В 3 ECHOВ  В В  ~0
74 RETURNВ  В В  1

Opcodes
PHP Manual