
/** * Allow all the methods of BladeInstance to be called. * * @param string $name The name of the method to run * @param array $arguments The parameters to pass to the method * * @return mixed */ public static function __callStatic($name, array $arguments) { return static::getInstance()->$name(...$arguments); } 1 vampirekiss 2016-04-28 17:59:54 +08:00 |
2 RryLee 2016-05-03 16:03:22 +08:00 laravel 中大量的使用 __call 和 __callStatic 的两个魔术方法 `...` 操作是 5.6 之后新填的特性,和其他语言一样,很酷的特性 |