APC::get PHP Method

get() public method

public get ( $key )
    public function get($key)
    {
        if (!apc_exists($this->_p($key))) {
            return False;
        }
        return apc_fetch($this->_p($key));
    }