這篇文章主要介紹了Laravel中Macroable宏指令的用法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
百度百科的定義:
計算機科學裡的宏(Macro),是一種批次處理的稱謂。一般說來,巨集是一種規則或模式,或稱語法替換 ,用於說明某一特定輸入(通常是字串)如何根據預先定義的規則轉換成對應的輸出(通常也是字串)。這種替換在預編譯時進行,稱作巨集展開。
我一開始接觸宏是在大學上電腦基礎課程時,老師講office時說的。那時老師介紹宏操作時沒太在意,只記得這一操作很強大,它能讓日常工作變得更容易。
今天我們講講Laravel中的巨集運算
<?php namespace Illuminate\Support\Traits; use Closure; use ReflectionClass; use ReflectionMethod; use BadMethodCallException; trait Macroable { /** * The registered string macros. * * @var array */ protected static $macros = []; /** * Register a custom macro. * * @param string $name * @param object|callable $macro * * @return void */ public static function macro($name, $macro) { static::$macros[$name] = $macro; } /** * Mix another object into the class. * * @param object $mixin * @return void */ public static function mixin($mixin) { $methods = (new ReflectionClass($mixin))->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 \Illuminate\Support\Traits\Macroable; } // 增加了宏指令之后,我们就能调用 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 \Illuminate\Support\Traits\Macroable; } // 批量绑定宏指令 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::__call
和Macroable::__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 \Illuminate\Support\Traits\Macroable; protected $name = 'father'; } // 闭包的特殊处理,需要做的就是绑定 $this, 如 Child::macro('show', function () { echo $this->name; }); // 输出:father (new Child)->show();
在上面的操作中我們綁定巨集時,在閉包中可以透過$this
來呼叫Child
的屬性,是因為在__call
方法中我們使用Closure::bindTo
方法。
官網對Closure::bindTo
的解釋:複製目前閉包對象,並綁定指定的$this物件和類別作用域。
Laravel中很多類別都使用了巨集這個trait
#例如Illuminate\Filesystem\Filesystem::class
,我們想為這個類別增加一個方法,但不會動到裡面的程式碼。
我們只需要到App\Providers\AppServiceProvider::register
方法增加巨集指令(你也可以專門新建一個服務提供者專門處理)
1.然後增加一個測試路由,測試我們新增加的方法
2.然後打開瀏覽器運行,你會發現,我們的程式碼可以正常的運行了並輸出結果了
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
以上是Laravel中Macroable巨集指令的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!