MY_Loader::_ci_get_component PHP 메소드

_ci_get_component() 보호된 메소드

Get a reference to a specific library or model.
protected _ci_get_component ( string $component ) : boolean
$component string Component name
리턴 boolean
    protected function &_ci_get_component($component)
    {
        $CI = $this->get_instance();
        return $CI->{$component};
    }