略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: INIT_STATIC_METHOD_CALL

2024-04-26

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
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/internals2.opcodes.init-static-method-call.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3