要获得特定的商店订单,我在prestashop 1.6上使用来自LINK的PSWebServiceLibrary.php。
这是我的代码
require_once 'PSWebServiceLibrary.php';
$opt['id'] = 1; // Looking for details for order 1
$opt['resource'] = 'orders';
// Call
$webService = new PrestaShopWebservice('http://myprestashop_shop_url.com', '*****', true);
$xml = $webService->get($opt);
$resources = $xml->children()->children();
echo '<pre>';
print_r($resources);
echo '</pre>';
RETURN HTTP BODY has returned all the values I am looking for as shown on pic1.
但$资源返回空值,如图2所示。
注意:在高级参数/ Web服务中,我启用了所有包括order_details和order_histories。
答案 0 :(得分:1)
$resources
不为空,它包含SimpleXMLElement对象。试试echo $resources->id
。