Auth_OpenID_Mapping::get PHP Метод

get() публичный Метод

Gets a specified value from the mapping, associated with the specified key. If the key does not exist in the mapping, $default is returned instead.
public get ( $key, $default = null )
    function get($key, $default = null)
    {
        $index = array_search($key, $this->keys);
        if ($index !== false) {
            return $this->values[$index];
        } else {
            return $default;
        }
    }