PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Ivan Melgrati   Feed Finder Class   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Simple example script
Class: Feed Finder Class
Find URLs of RSS, ATOM and OPML feeds
Author: By
Last change: Changed example Site (to include OPML document links).
Date: 16 years ago
Size: 186 bytes
 

Contents

Class file image Download
<?
require_once('find_feeds.php');
$find_links= new Find_RSS_Links('http://www.cleverclogs.org/2006/10/opml_autodiscov.html');
$links = $find_links->getLinks();
print_r ($links);
?>