[PHP]__callStatic

第一种:以下代码不会触发__callStatic,也不会报错

test是空方法

php 复制代码
<?php
class A {
    public function test()
    {

    }
    public static function __callStatic($method, $args)
    {
        print_r('aaaaaaaaaaaaaaaaaaaaa');
    }
}

A::test();

第二种:以下代码不会触发__callStatic,但是会报错

test非空方法

php 复制代码
<?php
class A {
    public function test()
    {
        var_dump('testtest');
    }

    public static function __callStatic($method, $args)
    {
        print_r('aaaaaaaaaaaaaaaaaaaaa');
    }
}

A::test();

结果:

相关推荐
不瘦80斤不改名19 小时前
Python 日志(logging)全解析
服务器·python·php
微爱帮监所写信寄信1 天前
微爱帮监狱寄信写信工具照片高清处理技术架构
开发语言·人工智能·网络协议·微信·php
天下皆白_唯我独黑1 天前
php -S 启动项目访问路由报错处理
开发语言·php
梅羽落1 天前
python武器化开发_01
开发语言·python·php
兮动人1 天前
Fatal error: Uncaught think\exception\ErrorException: SourceGuardian Loade
android·php
catchadmin1 天前
2026 年 PHP 开发者进阶 快速高效开发学习习惯
学习·php
Web极客码1 天前
深入解析WordPress的functions.php文件及其高效使用方法
开发语言·php
catchadmin1 天前
CatchAdmin 2025 年终总结 模块化架构的进化之路
架构·php·开源软件
微爱帮监所写信寄信1 天前
微爱帮监狱寄信写信小程序PHP底层优化框架
java·开发语言·数据库·spring·微信·php·mybatis