主頁 > 知識庫 > 詳解PHP設(shè)計模式之依賴注入模式

詳解PHP設(shè)計模式之依賴注入模式

熱門標(biāo)簽:常州地圖標(biāo)注服務(wù)商 百度商鋪地圖標(biāo)注 安裝電銷外呼系統(tǒng) 新河科技智能外呼系統(tǒng)怎么樣 注冊400電話申請 衡水外呼系統(tǒng)平臺 福州人工外呼系統(tǒng)哪家強 地圖標(biāo)注平臺怎么給錢注冊 釘釘打卡地圖標(biāo)注

目的

實現(xiàn)了松耦合的軟件架構(gòu),可得到更好的測試,管理和擴展的代碼

用法

DatabaseConfiguration 被注入 DatabaseConnection 并獲取所需的 $config 。如果沒有依賴注入模式, 配置將直接創(chuàng)建 DatabaseConnection 。這對測試和擴展來說很不好。

例子

Doctrine2 ORM 使用依賴注入。 例如,注入到 Connection 對象的配置。 對于測試而言, 可以輕松的創(chuàng)建可擴展的模擬數(shù)據(jù)并注入到 Connection 對象中。

Symfony 和 Zend Framework 2 已經(jīng)有了依賴注入的容器。他們通過配置的數(shù)組來創(chuàng)建對象,并在需要的地方注入 (在控制器中)。

UML 圖

代碼DatabaseConfiguration.php

?php

namespace DesignPatterns\Structural\DependencyInjection;

class DatabaseConfiguration
{
    /**
     * @var string
     */
    private $host;

    /**
     * @var int
     */
    private $port;

    /**
     * @var string
     */
    private $username;

    /**
     * @var string
     */
    private $password;

    public function __construct(string $host, int $port, string $username, string $password)
    {
        $this->host = $host;
        $this->port = $port;
        $this->username = $username;
        $this->password = $password;
    }

    public function getHost(): string
    {
        return $this->host;
    }

    public function getPort(): int
    {
        return $this->port;
    }

    public function getUsername(): string
    {
        return $this->username;
    }

    public function getPassword(): string
    {
        return $this->password;
    }
}
?>

DatabaseConnection.php

?php

namespace DesignPatterns\Structural\DependencyInjection;

class DatabaseConnection
{
    /**
     * @var DatabaseConfiguration
     */
    private $configuration;

    /**
     * @param DatabaseConfiguration $config
     */
    public function __construct(DatabaseConfiguration $config)
    {
        $this->configuration = $config;
    }

    public function getDsn(): string
    {
        // 這僅僅是演示,而不是一個真正的  DSN
        // 注意,這里只使用了注入的配置。 所以,
        // 這里是關(guān)鍵的分離關(guān)注點。

        return sprintf(
            '%s:%s@%s:%d',
            $this->configuration->getUsername(),
            $this->configuration->getPassword(),
            $this->configuration->getHost(),
            $this->configuration->getPort()
        );
    }
}
?>

測試Tests/DependencyInjectionTest.php

?php

namespace DesignPatterns\Structural\DependencyInjection\Tests;

use DesignPatterns\Structural\DependencyInjection\DatabaseConfiguration;
use DesignPatterns\Structural\DependencyInjection\DatabaseConnection;
use PHPUnit\Framework\TestCase;

class DependencyInjectionTest extends TestCase
{
    public function testDependencyInjection()
    {
        $config = new DatabaseConfiguration('localhost', 3306, 'domnikl', '1234');
        $connection = new DatabaseConnection($config);

        $this->assertEquals('domnikl:1234@localhost:3306', $connection->getDsn());
    }
}
?>

以上就是詳解PHP設(shè)計模式之依賴注入模式的詳細(xì)內(nèi)容,更多關(guān)于PHP設(shè)計模式之依賴注入模式的資料請關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • PHP設(shè)計模式(觀察者模式)
  • 淺談PHP設(shè)計模式之門面模式Facade
  • 淺談PHP設(shè)計模式之對象池模式Pool
  • PHP設(shè)計模式之迭代器模式的使用
  • 詳解PHP八大設(shè)計模式
  • PHP設(shè)計模式之原型模式示例詳解
  • PHP設(shè)計模式之命令模式示例詳解
  • PHP八大設(shè)計模式案例詳解

標(biāo)簽:六安 柳州 克拉瑪依 鶴崗 白城 鷹潭 唐山 遼陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《詳解PHP設(shè)計模式之依賴注入模式》,本文關(guān)鍵詞  詳解,PHP,設(shè)計模式,之,依賴,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《詳解PHP設(shè)計模式之依賴注入模式》相關(guān)的同類信息!
  • 本頁收集關(guān)于詳解PHP設(shè)計模式之依賴注入模式的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章