今日头条 焦点资讯 营销之道 企业报道 淘宝运营 网站建设 软件开发 400电话
  当前位置: 首页 » 资讯 » 软件开发 » 正文

Laravel 5.5) 加载过程instance方法

放大字体  缩小字体 发布日期:2018-02-20  来源:企业800网  作者:新格网  浏览次数:307  【去百度看看】
在bootstrap/app.php

$app = new Illuminate\Foundation\Application(    realpath(__DIR__.'/../')
);

实例化 vendor/laravel/framework/src/Illuminate/Foundation/Application.php类 该类的魔术方法

    public function __construct($basePath = null)
    {        
        if ($basePath) {            $this->setbasePath($basePath);
        }        
        $this->registerbaseBindings();        
        $this->registerbaseServiceProviders();        
        $this->registerCoreContainerAliases();
    }

查看注册 app 和container到 instances数组中

    protected function registerbaseBindings()
    {        static::setInstance($this);        
        $this->instance('app', $this);        
        $this->instance(Container::class, $this);
    }


查看今天主要的方法 instance

流程图

 public function instance($abstract, $instance)
    {        
        $this->removeAbstractAlias($abstract);        
        $isBound = $this->bound($abstract);        
        unset($this->aliases[$abstract]);        // We'll check to determine if this type has been bound before, and if it has
        // we will fire the rebound callbacks registered with the container and it
        // can be updated with consuming classes that have gotten resolved here.
        
        $this->instances[$abstract] = $instance;        
        if ($isBound) {            $this->rebound($abstract);
        }
    }

第一个方法 removeAbstractAlias

    
    protected function removeAbstractAlias($searched)
    {        
        if (! isset($this->aliases[$searched])) {            return;
        }        
        foreach ($this->abstractAliases as $abstract => $aliases) {            foreach ($aliases as $index => $alias) {                if ($alias == $searched) {                    unset($this->abstractAliases[$abstract][$index]);
                }
            }
        }
    }

第二个方法: bound

    
    public function bound($abstract)
    {        return isset($this->bindings[$abstract]) ||               isset($this->instances[$abstract]) ||               $this->isAlias($abstract);
    }

第三个方法: rebound

 
    protected function rebound($abstract)
    {        
        $instance = $this->make($abstract);        
        foreach ($this->getReboundCallbacks($abstract) as $callback) {            call_user_func($callback, $this, $instance);
        }
    }

以上就是Laravel 5.5) 加载过程instance方法的详细内容,更多请关注php中文网其它相关文章!

 
 
[ 资讯搜索 ]  [ 加入收藏 ]  [ 告诉好友 ]  [ 打印本文 ]  [ 违规举报 ]  [ 关闭窗口 ]

 
0条 [查看全部]  相关评论

 
网站首页 | 关于我们 | 联系方式 | 使用协议 | 版权隐私 | 网站地图 | 排名推广 | 广告服务 | 积分换礼 | 网站留言 | RSS订阅 | 吉ICP备11001726号-6
企业800网 · 提供技术支持