fetching youtube playlist id with php regex

3.9k Views Asked by At

I am trying to fetch the playlist id from url and save it into a new variable. For instance, if a user inputs this into a form, which then is submitted

http://www.youtube.com/watch?v=A7izsd5IXq8&playnext=1&list=PL6753173C0F0BE9ED

I just want to grab PL6753173C0F0BE9ED and save it into a new variable. I tried to use explode to do this so it saved everything after the &list= but I am not having much luck.

Any ideas to do this?

Thanks for the help!

4

There are 4 best solutions below

1
On BEST ANSWER

try

$url = 'http://www.youtube.com/watch?v=A7izsd5IXq8&playnext=1&list=PL6753173C0F0BE9ED';

echo end(explode('=', $url));
1
On
$url = 'http://www.youtube.com/watch?v=A7izsd5IXq8&playnext=1&list=PL6753173C0F0BE9ED';
echo "URL = $url<br />";
$playlistID = explode("&list=", $url);
echo "playlistID = $playlistID[1]";

this seems to work

2
On

You could use parse_str and parse_url

$string = 'http://www.youtube.com/watch?v=A7izsd5IXq8&playnext=1&list=PL6753173C0F0BE9ED';
$url = parse_url($string);
parse_str($url['query'],$q);
$list = $q['list'];
1
On
$url = 'http://www.youtube.com/watch?v=A7izsd5IXq8&playnext=1&list=PL6753173C0F0BE9ED';
$pl = preg_match('/list=(PL[a-f0-9]+)/i', $url, $match)
  ? $match[1]
  : false;