suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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);
    }

难道叫工厂模式?

我想大声告诉你我想大声告诉你2794 Tage vor562

Antworte allen(1)Ich werde antworten

  • 某草草

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

    是工厂模式,你看那些类是implements FactoryContract。
    然后通过魔法函数来实现调用具体工厂产品的方法,其中...是5.6+新增的可变数量的参数列表,

    Antwort
    0
  • StornierenAntwort