Question

I'm studing about ebay api's on these days but stil i cant figure out how to get ebay item id using full item url(http://www.ebay.com/ctg/TomTom-XXL-550M-US-including-Puerto-Rico-Canada-Mexico-Automotive-GPS-Receiver-/86127922?)?

i tried in many ways but negetive pls help me!is there any using apis? or any other way i just need the ebay item number..

Était-ce utile?

La solution

This isn't tested, just wrote it out real quick. It should at the very least give you the general idea. It assumes that the id will always be the segment of the url after the last /. If thats not the case, this answer will be pretty useless.

$ebayUrl = "http://www.ebay.com/ctg/TomTom-XXL-550M-US-including-Puerto-Rico-Canada-Mexico-Automotive-GPS-Receiver-/86127922?";
$pos     = strrpos($ebayUrl, '/') + 1;
$id      = substr($ebayUrl, $pos);

//if you want to remove the question mark left at the end
$id      = str_replace("?", "", $id);

echo $id;

Autres conseils

Other alternative could be:

$parts = explode('/', 'http://www.ebay.com/ctg/TomTom-XXL-550M-US-including-Puerto-Rico-Canada-Mexico-Automotive-GPS-Receiver-/86127922?');
$id = trim(end($parts), '?');
echo $id;

Depending on where you need to do this, you may be able to use ebayItemID

e.g. (javascript) var itemid = ebayItemID;

I've used this method to add a 'buy now' button to product descriptions.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top