what is the best way to retrieve id from itunes app link?

let say i have these link:

http://itunes.apple.com/us/app/bring-me-sandwiches!!/id457603026?mt=8

http://itunes.apple.com/us/app/bring-me-sandwiches!!/id457603026

i just want to get the id, 457603026 using php preg_match

link|improve this question

60% accept rate
5  
you absolutely need a preg_match? – Book Of Zeus Dec 2 '11 at 4:09
feedback

4 Answers

up vote 3 down vote accepted

try:

$url = 'http://itunes.apple.com/us/app/bring-me-sandwiches!!/id457603026';
preg_match("/id(\d+)/", $url, $match); 
echo $match[1]; //457603026
link|improve this answer
5  
this won't work if the app name start with id123 (for example) - bookofzeus (first one) and ajreal has the best solution – rcs20 Dec 8 '11 at 0:02
feedback

Without preg_match:

$url = 'http://itunes.apple.com/us/app/bring-me-sandwiches!!/id457603026?mt=8';
echo end(explode('/id', parse_url($url, PHP_URL_PATH)));

or, if you prefer:

$url = 'http://itunes.apple.com/us/app/bring-me-sandwiches!!/id457603026?mt=8';
$id = explode('/id', parse_url($url, PHP_URL_PATH));
echo $id[1];
link|improve this answer
feedback

Use explode, assuming the idxxx is always at the end of the link :-

$id = str_replace("id", "", end(explode("/", parse_url($link, PHP_URL_PATH))));
link|improve this answer
feedback

Try this, not a regex solution though:

$url = "http://itunes.apple.com/us/app/bring-me-sandwiches!!/id457603026?mt=8";
$arr = array_pop(explode("/", $url));
$id = array_pop(array_reverse(explode("?", $arr)));
echo substr($id, 2, strlen($id));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.