WebService Prestashop不显示值字段

时间:2016-04-05 11:11:35

标签: php web-services prestashop prestashop-1.5

当我检索客户时,这会返回给我所有客户的字段,但价值不显示! 我的代码:

$opt['resource'] = 'customers';
        $opt['id'] = '1';
        $xml = $webService->get($opt);
        dump($xml);die();

enter image description here

1 个答案:

答案 0 :(得分:0)

SimpleXML可以为您读取值:

$opt['resource'] = 'customers';
$opt['id'] = '1';
$xml = $webService->get($opt);
$loadedXML = simplexml_load_string($xml);

然后,您可以按名称访问值:

$loadedXML->id_default_group