문제

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..

도움이 되었습니까?

해결책

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;

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top