溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php中的__callStatic函數(shù)怎么用

發(fā)布時間:2021-07-13 15:35:43 來源:億速云 閱讀:130 作者:chen 欄目:編程語言

這篇文章主要講解了“php中的__callStatic函數(shù)怎么用”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“php中的__callStatic函數(shù)怎么用”吧!

這種情況在larave中尤其常見,但是開發(fā)過程中很明顯這些有一部分不是靜態(tài)的,比如你使用一個模型User,那么你每次實例化出來他都是一個全新的,互不影響,這里就用到了一個魔術(shù)方法__callStatic。

舉個栗子:

<?php
class Test{
    public function __call($name, $arguments)
    {
        echo 'this is __call'. PHP_EOL;
    }

    public static function __callStatic($name, $arguments)
    {
        echo 'this is __callStatic:'. PHP_EOL;
    }
}

$test = new Test();
$test->hello();
$test::hi();
//this is __call:hello
//this is __callStatic:hi

當然魔術(shù)方法也是很耗性能的一種方式,每次調(diào)用的時候后回先掃一遍class沒找到方法時才會調(diào)用它,而為了代碼的整潔和抽象這個方法也能給很大的幫助,在這之間去要有個權(quán)衡

下面實現(xiàn)的 log 類,采用的就是這種方法,將方法解耦出來,只要符合規(guī)定的接口就能調(diào)用

<?php

class Test{
    //獲取 logger 的實體
    private static $logger;

    public static function getLogger(){
        return self::$logger?: self::$logger = self::createLogger();
    }

    private static function createLogger(){
        return new Logger();
    }

    public static function setLogger(LoggerInterface $logger){
        self::$logger = $logger;
    }


    public function __call($name, $arguments)
    {
        call_user_func_array([self::getLogger(),$name],$arguments);
    }

    public static function __callStatic($name, $arguments)
    {
        forward_static_call_array([self::getLogger(),$name],$arguments);
    }
}

interface LoggerInterface{
    function info($message,array $content = []);
    function alert($messge,array $content = []);
}

class Logger implements LoggerInterface {
    function info($message, array $content = [])
    {
        echo 'this is Log method info' . PHP_EOL;
        var_dump($content);
    }

    function alert($messge, array $content = [])
    {
        echo 'this is Log method alert: '. $messge . PHP_EOL;
    }
}


Test::info('喊個口號:',['好好','學習','天天','向上']);
$test = new Test();
$test->alert('hello');

輸出:

this is Log method info
array(4) {
  [0]=>
  string(6) "好好"
  [1]=>
  string(6) "學習"
  [2]=>
  string(6) "天天"
  [3]=>
  string(6) "向上"
}
this is Log method alert: hello

感謝各位的閱讀,以上就是“php中的__callStatic函數(shù)怎么用”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對php中的__callStatic函數(shù)怎么用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI