Opcodes
PHP Manual

BEGIN_SILENCE

PHP code

<?php
/*
 * prepare to perform function call without displaying error messages
 * opcode number: 57
 */
/* Intentional file error */
$my_file = @file ('non_existent_file') or
   die (
"error:'$php_errormsg'");
?>

PHP opcodes

Function name: (null)

Compiled variables: !0=$my_file, !1=$php_errormsg

line#op fetchextreturn operands
70 BEGIN_SILENCEВ  В ~0 В 
В 1 SEND_VALВ  В В  'non_existent_file'
В 2 DO_FCALLВ  1В  'file'
В 3 END_SILENCEВ  В В  ~0
В 4 ASSIGNВ  В $2 !0,$1
В 5 JMPNZ_EXВ  В ~3 $2,->11
86 ADD_STRINGВ  В ~4 'error%3A%27'
В 7 ADD_VARВ  В ~4 ~4,!1
В 8 ADD_CHARВ  В ~4 ~4,39
В 9 EXITВ  В В  ~4
В 10 BOOLВ  В ~3 true
В 11 FREEВ  В В  ~3
912 RETURNВ  В В  1

Opcodes
PHP Manual