搜尋

首頁  >  問答  >  主體

php - laravel的Illuminate套件中的這種寫法,有專業術語嗎

/**
     * Dynamically call the default driver instance.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    public function __call($method, $parameters)
    {
        return $this->guard()->{$method}(...$parameters);
    }
/**
     * Dynamically call the default driver instance.
     *
     * @param  string  $method
     * @param  array   $parameters
     * @return mixed
     */
    public function __call($method, $parameters)
    {
        return $this->driver()->$method(...$parameters);
    }
/**
     * Dynamically call the default driver instance.
     *
     * @param  string  $method
     * @param  array   $parameters
     * @return mixed
     */
    public function __call($method, $parameters)
    {
        return $this->store()->$method(...$parameters);
    }

難道叫工廠模式?

我想大声告诉你我想大声告诉你2793 天前558

全部回覆(1)我來回復

  • 某草草

    某草草2017-05-16 13:14:14

    是工廠模式,你看那些類別是implements FactoryContract。
    然後透過魔法函數來實現調用特定工廠產品的方法,其中...是5.6+新增的可變數量的參數列表,

    回覆
    0
  • 取消回覆