Magic::__get PHP 메소드

__get() 공개 메소드

Alias for offsetget()
public __get ( $key ) : mixed
$key string
리턴 mixed
    function &__get($key)
    {
        $val =& $this->offsetget($key);
        return $val;
    }