首页 > 代码库 > [李景山php]每天TP5-20161218|thinkphp5-__callStatic函数使用

[李景山php]每天TP5-20161218|thinkphp5-__callStatic函数使用

<?php
/**
 * Created by PhpStorm.
 * User: 27394
 * Date: 2016/11/9
 * Time: 8:23
 */
trait Instance
{
    protected static $instance = null;
    /**
     * @param array $options
     * @return static
     */
    public static function instance($options = [])
    {// 经典的 单例,牛叉
        if (is_null(self::$instance)) {
            self::$instance = new self($options);
        }
        return self::$instance;
    }

    // 静态调用
    public static function __callStatic($method, $params)
    {// 经典的 静态调用
        if (is_null(self::$instance)) {
            self::$instance = new self();
        }
        $call = substr($method, 1);// 获得 call 方式 如果是类似这样_callphone的方式 也就是私有函数
        //is_callable// 判读当前函数是否存在
        if (0 === strpos($method, ‘_‘) && is_callable([self::$instance, $call])) {
            return call_user_func_array([self::$instance, $call], $params);
            // 使用 这个 call_user_func_array 方式进行处理
        } else {
            //echo __FUNCTION__."不存在";
            throw new Exception("method not exists:" . $method);
        }
    }
}

class MyCall{
    use Instance;
    static function callPhone(){
        echo __FUNCTION__;
    }
    private function callMail(){
        echo __FUNCTION__;
    }
}

MyCall::callPhone();// 正常调用的函数,会正常调用
MyCall::_callMail();// 通过这样的方式,直接可以调用静态的私有方法,
MyCall::callPhone1();// 调用不存在的静态函数的时候,在选用这个 __callStatic


本文出自 “专注php 群号:414194301” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1870896

[李景山php]每天TP5-20161218|thinkphp5-__callStatic函数使用