CAS_Client::_hasAttribute PHP 메소드

_hasAttribute() 개인적인 메소드

Check whether a specific attribute with a name is available
private _hasAttribute ( string $key ) : boolean
$key string name of attribute
리턴 boolean is attribute available
    private function _hasAttribute($key)
    {
        return is_array($this->_attributes) && array_key_exists($key, $this->_attributes);
    }
CAS_Client