CI_Driver::__get PHP 메소드

__get() 공개 메소드

Handles reading of the parent driver library's properties
public __get ( $var ) : mixed
리턴 mixed
    public function __get($var)
    {
        if (in_array($var, $this->_properties)) {
            return $this->_parent->{$var};
        }
    }