Skip to content

Instantly share code, notes, and snippets.

@uppfinnarjohnny
Created June 28, 2011 18:31
Show Gist options
  • Save uppfinnarjohnny/1051819 to your computer and use it in GitHub Desktop.
Save uppfinnarjohnny/1051819 to your computer and use it in GitHub Desktop.
latest_video()
<?php
function latest_video($id_only = False) {
$url = trim(file_get_contents('/home/cyklarunt/latest'));
return $id_only ? end(explode('=', $url)) : $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment