本文整理汇总了PHP中DomDocument::LoadXML方法的典型用法代码示例。如果您正苦于以下问题:PHP DomDocument::LoadXML方法的具体用法?PHP DomDocument::LoadXML怎么用?PHP DomDocument::LoadXML使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DomDocument
的用法示例。
在下文中一共展示了DomDocument::LoadXML方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getNewImportProcessResult
/**
* NOT IN USE /////////////////////
*
* Get the result form New Import Process
*
* @param string
* @return array
*/
protected function _getNewImportProcessResult($param = 'ReturnCode')
{
if (!is_object($this->soapClient)) {
return FALSE;
}
$this->xmlResponse = $this->soapClient->__getLastResponse();
$dom = new DomDocument();
$dom->loadXML($this->xmlResponse) or die('File XML non valido!');
$xmlResult = $dom->getElementsByTagName('mailupMessage');
$this->domResult = new DomDocument();
$this->domResult->LoadXML(html_entity_decode($xmlResult->item(0)->nodeValue)) or die('File XML non valido!');
if (isset($this->domResult) && is_object($this->domResult)) {
$rCode = $this->domResult->getElementsByTagName($param);
return $rCode->nodeValue;
} else {
$this->_config()->log('getNewImportProcessResult [No ReturnCode]');
return 9999;
}
return FALSE;
}
示例2: DOMDocument
function xmlstr_to_array($xmlstr, $params)
{
$doc = new DOMDocument();
$doc->loadXML($xmlstr) or die("File XML non valido!");
$xmlResult = $doc->getElementsByTagName("GetListsResult");
//echo "XmlReuslt:" . $xmlResult;
$domResult = new DomDocument();
$domResult->LoadXML(html_entity_decode($xmlResult->item(0)->nodeValue)) or die("File XML1 non valido!");
$rCode = $domResult->getElementsByTagName("list");
for ($i = 0; $i < $rCode->length; $i++) {
$obj = new stdClass();
// $out[] = array();
foreach ($params as $k => $v) {
$obj->{$v} = $rCode->item($i)->getElementsByTagName($v)->item(0)->nodeValue;
}
$out[] = $obj;
}
return $out;
}