01.
<?php
02.
include
"conshare.php"
;
03.
04.
$dom
=
new
DOMDocument();
05.
$dom
->loadXML(
$rawXMLresponse
);
06.
$others
=
$dom
->getElementsByTagNameNS(
"urn:schemas-microsoft-com:rowset"
,
"*"
);
07.
echo
$dom
->saveXML();
08.
09.
$others
=
$dom
->getElementsByTagNameNS(
"#RowsetSchema"
,
"*"
);
10.
11.
foreach
(
$others
as
$other
)
12.
{
13.
14.
echo
$other
->getAttribute(
"ows_Province"
);
15.
}
16.
?>