php处理复杂xml数据示例

前端之家收集整理的这篇文章主要介绍了php处理复杂xml数据示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP处理复杂xml数据的方法分享给大家供大家参考,具体如下:

PHP;"> PHP $xml = <<< XML Command completed successfully Domain exists Domain exists REQ-001-0000000074 649334436-1440642163169 XML; $x = simplexml_load_string($xml); echo intval($x->response->result["code"]),"\n"; echo strval($x->response->result->msg),"\n"; $ns = $x->response->resData->getNamespaces(true); $cds = $x->response->resData->children($ns["domain"])->chkData->cd; foreach ($cds as $key => $value) { echo intval($value->name->attributes()["avail"]),strval($value->name),strval($value->reason),"\n"; }

更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》、《》及《

希望本文所述对大家PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/19403.html

猜你在找的PHP相关文章