uawdijnntqw1x1x1
IP : 216.73.216.239
Hostname : odin2.mydev24.com
Kernel : Linux odin2.mydev24.com 5.14.0-611.41.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Mar 19 03:50:11 EDT 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
hrpsychology
/
public_html
/
app.soulfood.gr
/
..
/
podcast
/
rss_parser.php
/
/
<?php function parsePodcastFeed($feedUrl) { $rss = simplexml_load_file($feedUrl); $episodes = []; foreach ($rss->channel->item as $item) { $episodes[] = [ 'title' => (string) $item->title, 'audioUrl' => (string) $item->enclosure['url'], // Include other details as needed ]; } return $episodes; } // Assuming the RSS feed URL is provided as a query string parameter $feedUrl = $_GET['feedUrl'] ?? 'https://anchor.fm/s/eb11e5cc/podcast/rss'; header('Content-Type: application/json'); echo json_encode(parsePodcastFeed($feedUrl));
/home/hrpsychology/public_html/app.soulfood.gr/../podcast/rss_parser.php