2017 © Pedro Peláez
 

library container

IOC服务容器管理组件

image

houdunwang/container

IOC服务容器管理组件

  • Tuesday, October 10, 2017
  • by houdunwang
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1,165 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 9 Versions
  • 1 % Grown

The README.md

IOC

IOC服务容器管理组件, (*1)

安装组件

使用 composer 命令进行安装或下载源代码使用。, (*2)

composer require houdunwang/container

HDPHP 框架已经内置此组件,无需要安装, (*3)

使用

我们先定义一个测试类, (*4)

class App{
    public function show(){return 'success';}
}

注入单例对象

Container::instance('app', new App());
Container::make('app')->show();

使用single注入单例

Container::single('app',function () {
        return new App();
});
Container::make('app')->show();

使用bind注入到容器

Container::bind('app',function () {
    return new App();
});
Container::make('app')->show();

或可以真接创建容器对象进行注入, (*5)

$container = new \houdunwang\container\build\Base();
$container->instance('app', new App());
$container['app']->show();

调用类方法

调用类方法时组件会分析方法参数实现依赖注入, (*6)

$res = Container::callMethod(App::class, 'show');

调用函数

调用函数时组件会分析函数的参数实现依赖注入, (*7)

$res = Container::callFunction(function (App $app) {
     return $app->show();
});

The Versions

10/10 2017

dev-master

9999999-dev http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

The Development Requires

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 数据库管理 ioc服务容器

10/10 2017

v1.0.12

1.0.12.0 http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

The Development Requires

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 ioc服务容器

04/06 2017

v1.0.11

1.0.11.0 http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

The Development Requires

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 ioc服务容器

17/05 2017

v1.0.10

1.0.10.0 http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

The Development Requires

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 ioc服务容器

06/01 2017

v1.0.5

1.0.5.0 http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 数据库管理

06/01 2017

v1.0.4

1.0.4.0 http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 数据库管理

29/12 2016

v1.0.3

1.0.3.0 http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 数据库管理

27/12 2016

v1.0.1

1.0.1.0 http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 数据库管理

27/12 2016

v1.0.2

1.0.2.0 http://www.houdunwang.com/

IOC服务容器管理组件

  Sources   Download

MIT

The Requires

 

by 后盾网向军

hdphp houdunwang 后盾网 后盾人 向军老师 数据库管理