laravel - php 静态调用非静态方法是如何做到的?
黄舟
黄舟 2017-07-05 10:02:01
0
1
956

larave 项目中静态调用

facade

Admin类中的title方法是非静态的

这个是如何实现的?

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全部回复(1)
学习ing

归根结底是通过 魔术方法 __callStatic 实现的

IlluminateSupportFacadesFacade 代码最下方

https://github.com/illuminate...

 /**
     * Handle dynamic, static calls to the object.
     *
     * @param  string  $method
     * @param  array   $args
     * @return mixed
     *
     * @throws \RuntimeException
     */
    public static function __callStatic($method, $args)
    {
        $instance = static::getFacadeRoot();
        if (! $instance) {
            throw new RuntimeException('A facade root has not been set.');
        }
        return $instance->$method(...$args);
    }

关于 FacadeLavavel 比较重要的特性之一,可以详细了解下它的实现。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!