php:为功能模块编写服务类,通过构建函数管理参数,以及实例化后调用方法

老子叫甜甜 提交于 2020-02-12 11:45:07

分析鸟云的UpgradeService代码,升级的所有参数和方法都在里面

第一步:在其他文件实例化UpgradeService:

$this->upgradeService = new UpgradeService(
            REAL_PATH,
            "update.niaoyun.com",
            $this->dataDir,
            $dbconfig,
            $agentDomain,
            $agentid,
            $agentPass,
            $templates
        );

UpgradeService实例化后,参数已经赋值:

下面是UpgradeService..php

public function __construct($appRootDir, $masterHost, $tempDir, $dbConfig, $agentDomain, $agentid, $agentPassword, $templates)
    {
        $this->masterHost    = $masterHost;
        $this->agengid       = $agentid;
        $this->agentDomain   = $agentDomain;
        $this->agentPassword = $agentPassword;
............
}

第二步:通过$this->upgradeService便可调用UpgradeService..php里面定义的方法啦

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!