Skip to content

Instantly share code, notes, and snippets.

@hubgit
Created April 13, 2012 09:47
Show Gist options
  • Save hubgit/2375470 to your computer and use it in GitHub Desktop.
Save hubgit/2375470 to your computer and use it in GitHub Desktop.
Redirect to the XSPF for the latest episode of a BBC Radio series
<?php
$series = sprintf('http://www.bbc.co.uk/programmes/%s/episodes/player.json', $_GET['series']);
$data = json_decode(file_get_contents($series));
$episode = sprintf('http://www.bbc.co.uk/programmes/%s/segments.xspf', $data->episodes[0]->programme->pid);
header('Location: ' . $episode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment