3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { static function b() { return 'soy b static'; } function a() { return 'soy a'; } } //$z=new a; //var_dump(is_callable($z::b())); $b=[new a, 'b']; var_dump(is_callable($b)); $a=new a; $c='$a' .'::b()'; var_dump(is_callable($c));
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/HCO91
function name:  (null)
number of ops:  22
compiled vars:  !0 = $b, !1 = $a, !2 = $c
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   21     0  E >   NEW                                              $3      'a'
          1        DO_FCALL                                      0          
          2        INIT_ARRAY                                       ~5      $3
          3        ADD_ARRAY_ELEMENT                                ~5      'b'
          4        ASSIGN                                                   !0, ~5
   23     5        INIT_FCALL                                               'var_dump'
          6        INIT_FCALL                                               'is_callable'
          7        SEND_VAR                                                 !0
          8        DO_ICALL                                         $7      
          9        SEND_VAR                                                 $7
         10        DO_ICALL                                                 
   25    11        NEW                                              $9      'a'
         12        DO_FCALL                                      0          
         13        ASSIGN                                                   !1, $9
   27    14        ASSIGN                                                   !2, '%24a%3A%3Ab%28%29'
   29    15        INIT_FCALL                                               'var_dump'
         16        INIT_FCALL                                               'is_callable'
         17        SEND_VAR                                                 !2
         18        DO_ICALL                                         $13     
         19        SEND_VAR                                                 $13
         20        DO_ICALL                                                 
         21      > RETURN                                                   1

Class A:
Function b:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/HCO91
function name:  b
number of ops:  2
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    6     0  E > > RETURN                                                   'soy+b+static'
    7     1*     > RETURN                                                   null

End of function b

Function a:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/HCO91
function name:  a
number of ops:  2
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   10     0  E > > RETURN                                                   'soy+a'
   12     1*     > RETURN                                                   null

End of function a

End of class A.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
153.89 ms | 941 KiB | 18 Q