PHP Classes

File: example2.php

Recommend this page to a friend!
  Classes of Piotr Malinski   Podcast Parser   example2.php   Download  
File: example2.php
Role: Example script
Content type: text/plain
Description: Example 2
Class: Podcast Parser
Parse and generate RSS feeds for podcasts
Author: By
Last change:
Date: 19 years ago
Size: 193 bytes
 

Contents

Class file image Download
<?PHP
include 'podcast.php';
$p = new podcast();
$p->cast('podcast.xml');
$a = $p->get_base_data_array();
$b = $p->get_podcast_arrays();
highlight_string($p->make_xml_podcast_file($a, $b));
?>