国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Laravel 中簡約而不簡單的 Macroable 宏指令

itvincent / 1049人閱讀

摘要:方法這個方法就比較簡單沒什么復雜可言,就判斷是否存在宏指令。通常是使用宏指令之前判斷一下。中對類增加宏指令中很多類都使用了宏這個比如,我們想為這個類增加一個方法,但不會動到里面的代碼。

百度百科的定義:
計算機科學里的宏(Macro),是一種批量處理的稱謂。一般說來,宏是一種規則或模式,或稱語法替換 ,用于說明某一特定輸入(通常是字符串)如何根據預定義的規則轉換成對應的輸出(通常也是字符串)。這種替換在預編譯時進行,稱作宏展開。

我一開始接觸宏是在大學上計算機基礎課程時,老師講office時說的。那時老師介紹宏操作時沒太在意,只記得這一操作很強大,它能使日常工作變得更容易。

今天我們講講Laravel中的宏操作


首先完整的源碼
getMethods(
            ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_PROTECTED
        );

        foreach ($methods as $method) {
            $method->setAccessible(true);

            static::macro($method->name, $method->invoke($mixin));
        }
    }

    /**
     * Checks if macro is registered.
     *
     * @param  string  $name
     * @return bool
     */
    public static function hasMacro($name)
    {
        return isset(static::$macros[$name]);
    }

    /**
     * Dynamically handle calls to the class.
     *
     * @param  string  $method
     * @param  array   $parameters
     * @return mixed
     *
     * @throws BadMethodCallException
     */
    public static function __callStatic($method, $parameters)
    {
        if (! static::hasMacro($method)) {
            throw new BadMethodCallException("Method {$method} does not exist.");
        }

        if (static::$macros[$method] instanceof Closure) {
            return call_user_func_array(Closure::bind(static::$macros[$method], null, static::class), $parameters);
        }

        return call_user_func_array(static::$macros[$method], $parameters);
    }

    /**
     * Dynamically handle calls to the class.
     *
     * @param  string  $method
     * @param  array   $parameters
     * @return mixed
     *
     * @throws BadMethodCallException
     */
    public function __call($method, $parameters)
    {
        if (! static::hasMacro($method)) {
            throw new BadMethodCallException("Method {$method} does not exist.");
        }

        $macro = static::$macros[$method];

        if ($macro instanceof Closure) {
            return call_user_func_array($macro->bindTo($this, static::class), $parameters);
        }

        return call_user_func_array($macro, $parameters);
    }
}

Macroable::macro方法

public static function macro($name, $macro)
{
    static::$macros[$name] = $macro;
}

很簡單的代碼,根據參數的注釋,$macro可以傳一個閉包或者對象,之所以可以傳對象,多虧了PHP中的魔術方法

class Father
{
    // 通過增加魔術方法**__invoke**我們就可以把對象當做閉包來使用了。
    public function __invoke()
    {
        echo __CLASS__;
    }
}

class Child
{
    use IlluminateSupportTraitsMacroable;
}

// 增加了宏指令之后,我們就能調用 Child 對象中不存在的方法了
Child::macro("show", new Father);
// 輸出:Father
(new Child)->show();

Macroable::mixin方法

這個方法是把一個對象的方法的返回結果注入到原對象中

public static function mixin($mixin)
{
    // 通過反射獲取該對象中所有公開和受保護的方法
    $methods = (new ReflectionClass($mixin))->getMethods(
        ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_PROTECTED
    );

    foreach ($methods as $method) {
        // 設置方法可訪問,因為受保護的不能在外部調用
        $method->setAccessible(true);
        
        // 調用 macro 方法批量創建宏指令
        static::macro($method->name, $method->invoke($mixin));
    }
}

// 實際使用
class Father
{
    public function say()
    {
        return function () {
            echo "say";
        };
    }

    public function show()
    {
        return function () {
            echo "show";
        };
    }

    protected function eat()
    {
        return function () {
            echo "eat";
        };
    }
}

class Child
{
    use IlluminateSupportTraitsMacroable;
}

// 批量綁定宏指令
Child::mixin(new Father);

$child = new Child;
// 輸出:say
$child->say();
// 輸出:show
$child->show();
// 輸出:eat
$child->eat();

在上面的代碼可以看出mixin可以將一個類的方法綁定到宏類中。需要注意的就是,方法必須是返回一個閉包類型。

Macroable::hasMacro方法

public static function hasMacro($name)
{
    return isset(static::$macros[$name]);
}

這個方法就比較簡單沒什么復雜可言,就判斷是否存在宏指令。通常是使用宏指令之前判斷一下。

Macroable::__callMacroable::__callStatic方法

正是由于這兩個方法,我們才能進行宏操作,兩個方法除了執行方式不同,代碼大同小異。這里講一下__call

public function __call($method, $parameters)
{
    // 如果不存在這個宏指令,直接拋出異常
    if (! static::hasMacro($method)) {
        throw new BadMethodCallException("Method {$method} does not exist.");
    }

    // 得到存儲的宏指令
    $macro = static::$macros[$method];

    // 閉包做一點點特殊的處理
    if ($macro instanceof Closure) {
        return call_user_func_array($macro->bindTo($this, static::class), $parameters);
    }

    // 不是閉包,比如對象的時候,直接通過這種方法運行,但是要確保對象有`__invoke`方法
    return call_user_func_array($macro, $parameters);
}


class Child
{
    use IlluminateSupportTraitsMacroable;

    protected $name = "father";
}

// 閉包的特殊處理,需要做的就是綁定 $this, 如
Child::macro("show", function () {
    echo $this->name;
});

// 輸出:father
(new Child)->show();

在上面的操作中我們綁定宏時,在閉包中可以通過$this來調用Child的屬性,是因為在__call方法中我們使用Closure::bindTo方法。

官網對Closure::bindTo的解釋:復制當前閉包對象,綁定指定的$this對象和類作用域。
Laravel 中對類增加宏指令

Laravel中很多類都使用了宏這個trait

比如IlluminateFilesystemFilesystem::class,我們想為這個類增加一個方法,但不會動到里面的代碼。

我們只需要到AppProvidersAppServiceProvider::register方法增加宏指令(你也可以專門新建一個服務提供者專門處理)

然后增加一條測試路由,測試我們新增加的方法

然后打開瀏覽器運行,你就會發現,我們的代碼可以正常的運行了并輸出結果了


原文地址

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/29011.html

相關文章

  • Laravel Model 利用 Macroable 為數據模型添加能力

    摘要:利用當前類沒有這個函數的時候執行這個函數名注冊的回調。使用有了這個那么我們添加到模型中,就可以使用宏能力為其動態添加函數了這樣,我們可以直接拿到用戶發布的所有問題了。 【摘要】簡單的說一下宏能力,這個類是 IlluminateSupportTraitsMacroable 其中利用重載實現了可以定義宏的功能,即通過 macro 靜態方法添加回調,并定義一個名字。利用 __call 當前類...

    zhangfaliang 評論0 收藏0
  • Debugging collections(譯)

    摘要:注本文是翻譯寫的關于調試技巧,讀完以后很實用,分享給大家閱讀過程中,翻譯有錯誤的希望大家指正原文鏈接最近我一直在使用的,如果你還不了解,我簡單說下一個集合就是一個功能強大的數組有很多強大處理其內部數據的函數但是唯一讓我頭疼的地方是如何調試的 注:本文是翻譯Freek Van der Herten寫的關于Collection調試技巧,,讀完以后很實用,分享給大家.閱讀過程中,翻譯有錯誤的...

    lunaticf 評論0 收藏0
  • [譯] Laravel-Excel 3.0 文檔

    摘要:事件將通過添加關注來激活。自動注冊事件監聽器通過使用,你可以自動注冊事件監聽器,而不需要使用。你可以自由使用這個宏,或者創造你自己的語法以上例子可作對于方法可查看文檔測試測試下載測試存儲導出測試隊列導出 Basics 最簡單的導出方法是創建一個自定義的導出類, 這里我們使用發票導出作為示例. 在 App/Exports 下創建一個 InvoicesExport 類 namespace...

    canopus4u 評論0 收藏0

發表評論

0條評論

itvincent

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<