FeedFinder::is_opml PHP Метод

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

* FeedFinder::is_feed ()
public is_opml ( $uri = NULL )
    function is_opml($uri = NULL)
    {
        $data = $this->data($uri);
        return preg_match("(" . implode('|', $this->_opml_markers) . ")i", $data);
    }