php常用类库-标准化

psr/container

composer 

https://packagist.org/packages/psr/container
github

https://github.com/php-fig/container

实现 PSR-11

设置容器通用 标准, 当定义标注化容器类的时候实现该接口。接口定义get 和 has 方法。在get()方法中获取的实例不存在的时候抛出异常,继承自Psr\Container\ContainerExceptionInterface, 其他相关异常都继承自 Psr\Container\ContainerExceptionInterface

你可能感兴趣的:(php)