FeedFinder::status PHP Метод

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

* FeedFinder::upload_data ()
public status ( $uri = NULL )
    function status($uri = NULL)
    {
        $this->_get($uri);
        if (!is_wp_error($this->_response) and isset($this->_response['response']['code'])) {
            $ret = $this->_response['response']['code'];
        } else {
            $ret = NULL;
        }
        return $ret;
    }