首页 > 开发 > PHP > 正文

Laravel中简约却不简单的Macroable宏指令详解

2024-05-04 22:42:44
字体:
来源:转载
供稿:网友

百度百科的定义:

计算机科学里的宏(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中的魔术方法

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表