PHP Classes

OPML Parser Class: Extract the properties of content from OPML files

Recommend this page to a friend!
     
  Info   Example   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 787 All time: 4,330 This week: 673Up
Version License PHP version Categories
iam-opml-parser 2.9Custom (specified...5.3XML, Content management
Description 

Author

The class can retrieve local or remote OPML file and parses it to extract its content using an iterator.

Each of the iterated elements contain the URLs of the listed content as well all other the properties of each content entry such as: name, link target, description, RSS feed, creation date and content type (RSS, HTML, song, booklist, etc..).

Innovation Award
PHP Programming Innovation award nominee
July 2007
Number 13
OPML is an XML format often used to aggregate URLs of multiple RSS feeds.

This package can be used parse and extract information about the URLs listed in OPML files. It can help importing the URLs of multiple RSS feeds into other applications.

Manuel Lemos
Picture of Ivan Melgrati
  Performance   Level  
Innovation award
Innovation award
Nominee: 3x

 

Example

<?php

   
use imelgrat\OPML_Parser\OPML_Parser;
    require_once (
'../src/opml-parser.php');
?>
<html>
<head>
<title>OPML Parser Example</title>
</head>
<body>
<form action="index.php" method="post" name="form1" target="_self" id="form1">
  <label>URL of OPML file
  <input name="url" type="text" id="url" value="<?php
   
echo ($_POST['url'] != '' ? $_POST['url'] : 'http://www.bbc.co.uk/podcasts.opml');
?>" size="60" maxlength="255"/>
  </label>
  <p>
    <label>
    <input type="submit" name="Submit" value="Submit" />
    </label>
  </p>
</form>
<p>&nbsp;</p>
<?php
   
   
if ($_POST['url'] != '')
    {
       
$parser = new OPML_Parser();

       
$parser->ParseLocation($_POST['url'], null);

        foreach (
$parser as $key => $item)
        {
            echo
"<p> Item: " . $key . '</p><ul>';
            foreach (
$item as $attribute => $value)
            {
                echo
'<li>' . '<strong>' . $attribute . '</strong>:' . $value . '</li>';
            }
            echo
'</ul>';
            echo
'<p>&nbsp;</p>';

        }
    }
?>
</body>
</html>


Details

OPML Parser

GitHub license GitHub release Total Downloads GitHub issues GitHub stars

OPML Parser Class: Extract the properties of content from OPML files.

A file with the OPML file extension is an Outline Processor Markup Language file. It's saved using the XML format, and is used to exchange information between applications regardless of the operating system.

The OPML file format is often seen used as the import/export format for RSS feed reader programs. Since a file of this format can hold a collection of RSS subscription information, it's the ideal format for backing up or sharing RSS feeds. The class retrieves local or remote OPML file and parses it to extract its content into a PHP iterator. Each of the iterator elements contains the URLs of the listed content as well all other the properties of each content entry such as: name, link target, description, RSS feed, creation date and content type (RSS, HTML, song, booklist, etc..).

Developed by Ivan Melgrati

Requirements

  • PHP >= 5.3.0

Installation

Composer

The recommended installation method is through Composer, a dependency manager for PHP. Just add imelgrat/opml-parser to your project's composer.json file:

{
    "require": {
        "imelgrat/opml-parser": "*"
    }
}

More details can
be found over at Packagist.

### Manually

1.  Copy `src/opml-parser.php` to your codebase, perhaps to the `vendor`
    directory.
2.  Add the `OPML_Parser` class to your autoloader or `require` the file
    directly.

Then, in order to use the OPML class, you need to invoke the "use" operator to bring the class into skope.

<?php use imelgrat\OPML_Parser\OPML_Parser;

$parser = new OPML_Parser();

// Get OPML from URL $parser->ParseLocation('http://www.bbc.co.uk/podcasts.opml', null);

// Walk through each item in the same way as we would if $parser were a string (thanks to the Iterator interface) foreach ($parser as $key => $item) {

echo "<p> Item: " . $key . '</p><ul>';
foreach ($item as $attribute => $value)
{
	echo '<li>' . '<strong>' . $attribute . '</strong>:' . $value . '</li>';
}
echo '</ul>';
echo '<p>&nbsp;</p>';

} ?>


Feedback
--------

Please open an issue to request a feature or submit a bug report. Or even if
you just want to provide some feedback, I'd love to hear. I'm also available on
Twitter as @imelgrat.

Contributing
------------

1.  Fork it.
2.  Create your feature branch (`git checkout -b my-new-feature`).
3.  Commit your changes (`git commit -am 'Added some feature'`).
4.  Push to the branch (`git push origin my-new-feature`).
5.  Create a new Pull Request.

  Files folder image Files (68)  
File Role Description
Files folder imagedocs (2 files, 9 directories)
Files folder imageexamples (1 file)
Files folder imagesrc (1 file)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file phpdoc.dist.xml Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation
Accessible without login Plain text file VERSION Data Auxiliary data

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 100%
Total:787
This week:0
All time:4,330
This week:673Up