INIT_STATIC_METHOD_CALL

PHP code

  1. <?php
  2. /*
  3. *
  4. * opcode number: 113
  5. */
  6. class Foo {
  7. public static function aStaticMethod() {
  8. echo "hello world\n";
  9. }
  10. }
  11.  
  12. Foo::aStaticMethod();
  13. ?>

PHP opcodes

Function name: (null)

Compiled variables: none

line#op fetchextreturn operands
60 NOP      
121 ZEND_INIT_STATIC_METHOD_CALL     'Foo','aStaticMethod'
 2 ZEND_OP_DATA     'foo%3A%3Aastaticmethod'
 3 DO_FCALL_BY_NAME  0   
134 RETURN     1

Function name: aStaticMethod

Compiled variables: none

line#op fetchextreturn operands
80 ECHO     'hello+world%0A'
91 RETURN     null
LoadingChargement en cours