本文整理汇总了PHP中Carrier::parseResponse方法的典型用法代码示例。如果您正苦于以下问题:PHP Carrier::parseResponse方法的具体用法?PHP Carrier::parseResponse怎么用?PHP Carrier::parseResponse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Carrier
的用法示例。
在下文中一共展示了Carrier::parseResponse方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doServicesRequest
/**
* Function executes services request and prepares the $carriers array.
* @access private
* @return Void
*/
private function doServicesRequest()
{
$source = $this->doRequest();
/* Uncomment if ou want to display the XML content */
/* We make sure there is an XML answer and try to parse it */
if ($source !== false) {
parent::parseResponse($source);
if (count($this->resp_errors_list) == 0) {
/* The XML file is loaded, we now gather the datas */
$carriers = $this->xpath->query('/operators/operator');
foreach ($carriers as $c => $carrier) {
$index = $c + 1;
$result = $this->parseCarrierNode($carrier);
$this->carriers[$result['code']] = $result;
$this->carriers[$result['code']]['services'] = $this->parseServicesNode($index);
}
}
}
}