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

非laravel项目 使用Illuminate 怎么注册服务提供者?!

程序员文章站 2022-06-12 20:23:05
...
非laravel项目 使用Illuminate 怎么注册服务提供者?!

回复内容:

非laravel项目 使用Illuminate 怎么注册服务提供者?!

找到ServiceProvider注册的类,直接实例化这个类来用。

可以参考laravel的实现:

Illuminate\Foundation\Application

class Example
{
    public function say()
    {
        echo 'hello';
    }
}


$app = new Illuminate\Container\Container;
$app->instance('Illuminate\Container\Container',$app);  //共享容器对象

//注册一个服务
$app->bind('example',function(){
    return new Example();
});


$app->make('example')->say();       //hello


$app2 = new Illuminate\Container\Container; //获得共享的容器对象,即$app

$app2->make('example')->say();      //hello
相关标签: php laravel