3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Turn off all error reporting error_reporting(0); // Report simple running errors error_reporting(E_ERROR | E_WARNING | E_PARSE); // Reporting E_NOTICE can be good too (to report uninitialized // variables or catch variable name misspellings ...) error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); // Report all errors except E_NOTICE error_reporting(E_ALL & ~E_NOTICE); // Report all PHP errors (see changelog) error_reporting(E_ALL); // Report all PHP errors error_reporting(-1);
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/FQAjh
function name:  (null)
number of ops:  19
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   INIT_FCALL                                               'error_reporting'
          1        SEND_VAL                                                 0
          2        DO_ICALL                                                 
    6     3        INIT_FCALL                                               'error_reporting'
          4        SEND_VAL                                                 7
          5        DO_ICALL                                                 
   10     6        INIT_FCALL                                               'error_reporting'
          7        SEND_VAL                                                 15
          8        DO_ICALL                                                 
   13     9        INIT_FCALL                                               'error_reporting'
         10        SEND_VAL                                                 32759
         11        DO_ICALL                                                 
   16    12        INIT_FCALL                                               'error_reporting'
         13        SEND_VAL                                                 32767
         14        DO_ICALL                                                 
   19    15        INIT_FCALL                                               'error_reporting'
         16        SEND_VAL                                                 -1
         17        DO_ICALL                                                 
         18      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
154.78 ms | 1398 KiB | 15 Q