source: trunk/web/addons/job_monarch/lib/extjs-30/examples/feed-viewer/feed-proxy.php @ 625

Last change on this file since 625 was 625, checked in by ramonb, 15 years ago

lib/extjs-30:

  • new ExtJS 3.0
File size: 459 bytes
Line 
1<?php
2// this is an example server-side proxy to load feeds
3$feed = $_REQUEST['feed'];
4if($feed != '' && strpos($feed, 'http') === 0){
5        header('Content-Type: text/xml');
6        $xml = file_get_contents($feed);
7        $xml = str_replace('<content:encoded>', '<content>', $xml);
8        $xml = str_replace('</content:encoded>', '</content>', $xml);
9        $xml = str_replace('</dc:creator>', '</author>', $xml);
10        echo str_replace('<dc:creator', '<author', $xml);
11        return;
12}
Note: See TracBrowser for help on using the repository browser.