欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PHP 设计模式之注册表模式

程序员文章站 2022-06-12 16:47:11
...
<?php
/*
注册表模式很像是,单例模式和工厂模式的结合体。
可以检索你设置的对象,可以在需要时候设置你的对象。
*/
abstract class Registry
{
    const LOGGER = 'logger';
    private static $storedValues = [];
     static $allowedKeys = [
        self::LOGGER,
    ];


    public static function set(string $key, $value)
    {
        if (!in_array($key, self::$allowedKeys)) {
            throw new \InvalidArgumentException('Invalid key given');
        }

        self::$storedValues[$key] = $value;
    }

    public static function get(string $key)
    {
        if (!in_array($key, self::$allowedKeys) || !isset(self::$storedValues[$key])) {
            throw new \InvalidArgumentException('Invalid key given');
        }

        return self::$storedValues[$key];
    }
}