[李景山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
时间: 2024-11-12 21:55:00

[李景山php]每天TP5-20161218|thinkphp5-__callStatic函数使用的相关文章

李洪强iOS开发Swift篇—07_函数

李洪强iOS开发Swift篇—07_函数 一.函数的定义 (1)函数的定义格式 1 func 函数名(形参列表) -> 返回值类型 { 2 // 函数体... 3 4 } (2)形参列表的格式 形参名1: 形参类型1, 形参名2: 形参类型2, … (3)举例:计算2个整数的和 1 func sum(num1: Int, num2: Int) -> Int { 2 return num1 + num2 3 } (4)没有返回值的函数 如果函数没有返回值,有3种写法 1 func 函数名(形参列

李洪强iOS开发Swift篇—08_函数(2)

李洪强iOS开发Swift篇—08_函数(2) 一.函数类型 函数类型也是数据类型的一种,它由形参类型和返回值类型组成,格式是 (形参类型列表) -> 返回值类型 1 func sum(num1: Int, num2: Int) -> Int { 2 return num1 + num2 3 } sum函数的函数类型是(Int, Int) -> Int 1 func printLine() 2 { 3 println("-----------") 4 } printL

[李景山php]每天TP5-20170115|thinkphp5-Model.php-8

    /**      * 预载入关联查询 返回模型对象      * @access public      * @param Model     $result 数据对象      * @param string    $relation 关联名      * @return Model      */     public function eagerlyResult($result, $relation)     {         return $this->relation()->

[李景山php]每天TP5-20170108|thinkphp5-Log.php

<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006~2016 http://thinkphp.cn All 

[李景山php]每天TP5-20161221|thinkphp5-jump.php

<?php /**  * 用法:  * load_trait('controller/Jump');  * class index  * {  *     use \traits\controller\Jump;  *     public function index(){  *         $this->error();  *         $this->redirect();  *     }  * }  */ namespace traits\controller; use

安装TP5(thinkphp5)Composer

1.下载 composer.phar (http:\\www.cnblogs.com/JANCHAN/7735882.html),把composer.phar放入php中(例如php-5.4.45) 再建一个composer.bat放在php中(放在同级的文件夹中)---在里面写    @php "%~dp0composer.phar" %* 2.去网站根目录中的  配置  php.ini 改openssl.dll和fileinfo.dll去掉分号(按ctrl+F搜索) 3.写环境变量

[李景山php]每天laravel-20161103|CompilerEngine.php-2

    /**      * Handle a view exception.      *      * @param  \Exception  $e      * @param  int  $obLevel      * @return void      *      * @throws $e      */     protected function handleViewException(Exception $e, $obLevel)     {         $e = new E

[李景山php]每天laravel-20161104|Engine.php

<?php namespace Illuminate\View\Engines; abstract class Engine {     /**      * The view that was last to be rendered.      *      * @var string      */     protected $lastRendered;//The view that was last to be rendered.     /**      * Get the last 

[李景山php]每天laravel-20161105|EngineInterface.php

<?php namespace Illuminate\View\Engines; interface EngineInterface {     /**      * Get the evaluated contents of the view.      *      * @param  string  $path      * @param  array   $data      * @return string      */     public function get($path,