jongotlin / product-feed-adapter
产品数据适配器
1.0.0
2016-11-16 20:33 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-09-20 21:52:41 UTC
README
使用此适配器与Adrecord、TradeDoubler、Zanox、Adtraction或Adsettings的任何产品数据源配合使用。
$feed = file_get_contents('http://feed.adrecord.com/foo.json?id=bar');
$productFeedAdapter = new ProductFeedAdapter($feed);
$network = $productFeedAdapter->getNetwork();
foreach ($network->getProducts(0, 10) as $product) {
echo $product->getTrackingUrl();
}