PHP Doku:: INIT_STATIC_METHOD_CALL - internals2.opcodes.init-static-method-call.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchPHP im Kern: Das Entwicklerhandbuch für die Zend EngineZend Engine 2 opcode listOpcodesINIT_STATIC_METHOD_CALL

Ein Service von Reinhard Neidl - Webprogrammierung.

Opcodes

<<INIT_METHOD_CALL

INIT_STRING>>

INIT_STATIC_METHOD_CALL

PHP code

<?php
/*
 * 
 * opcode number: 113
 */
class Foo {
    public static function 
aStaticMethod() {
            echo 
"hello world\n";
    }
}

Foo::aStaticMethod();
?>

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

Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)