This document summarizes PHP opcodes and their execution process. It discusses how opcodes are generated from PHP scripts via lexical analysis and parsing. Opcodes contain operands, result values, and other metadata. Non-PHP code like HTML is compiled into ECHO opcodes. After compilation, opcodes are stored in zend_op_array structures along with other symbol table information. Function and class tables map names to compiled definitions and are populated during compilation.