Magic::offsetexists PHP 메소드

offsetexists() 공개 메소드

Convenience method for checking property value
public offsetexists ( $key ) : mixed
$key string
리턴 mixed
    function offsetexists($key)
    {
        return Base::instance()->visible($this, $key) ? isset($this->{$key}) : $this->exists($key);
    }