VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > python入门教程 >
  • [PHP] laravel 中__callStatic的使用

当使用laravel的日志类记录信息的时候

Log::info("xxxx")

发现Log类里并没有定义info 静态方法,但是仍然可以调通

原因就是__callStatic魔术方法,当静态方法不存在的时候,会调用这个魔术方法

 

 

简单的测试用例

复制代码
<?php

/**
 * Class Log
 * @method static void info()
 * @see Test
 */
class Log{
    public static function __callStatic($method, $args){
        $test=new Test();
        $test->$method($args);
    }
}

class Test{
    public  function info($args){
        var_dump($args);
    }
}


Log::info("hello","world");
复制代码


 

出处:https://www.cnblogs.com/taoshihan/p/15071467.html

相关教程