当前位置 : 主页 > 网络编程 > PHP >

仓库模式基类

来源:互联网 收集:自由互联 发布时间:2021-06-28
仓库模式基类 $method(...$parameters); } /** * @Auth: kingofzihua * @param $method function name * @param $parameters parameter * @return mixed */ public function __call($method, $parameters) { return (new static)-$method(...$parameter
仓库模式基类
 $method(...$parameters);
    }

    /**
     * @Auth: kingofzihua
     * @param $method function name
     * @param $parameters parameter
     * @return mixed
     */
    public function __call($method, $parameters)
    {
        return (new static)->$method(...$parameters);
    }
}
上一篇:ip.php
下一篇:php发送邮件类
网友评论