PHP SimpleXML で解析する XML があります。XML ファイルの一部は次のようになります。
<deviceStatusPolling interval="60">
<r:datapoint programmaticName="t_val_sys_pct_mssDbPartitionUsage" />
</deviceStatusPolling>
それを解析すると、次のようになります。
Parsing 'deviceStatusPolling'...
Has 1 attribute(s):
- interval: 60
子を解析しません:
<r: datapoint programmaticName="t_val_sys_pct_mssDbPartitionUsage" />
これはパース関数です:
function parse_recursive(SimpleXMLElement $element, $level = 0) {
$indent = str_repeat("\t", $level); // determine how much we'll indent
$value = trim((string) $element); // get the value and trim any whitespace from the start and end
$attributes = $element->attributes(); // get all attributes
$children = $element->children(); // get all children
echo "{$indent}Parsing '{$element->getName()}'...<br>";
if(count($children) == 0 && !empty($value)) // only show value if there is any and if there aren't any children
{
echo "{$indent}Value: {$element}<br>";
}
// only show attributes if there are any
if(count($attributes) > 0)
{
echo $indent.'Has '.count($attributes).' attribute(s):<br>';
foreach($attributes as $attribute)
{
echo "{$indent}- {$attribute->getName()}: {$attribute}<br>";
}
}
// only show children if there are any
if(count($children))
{
echo $indent.'Has '.count($children).' child(ren):<br>';
foreach($children as $child)
{
parse_recursive($child, $level+1); // recursion :)
}
}
echo $indent; // just to make it "cleaner"
echo "<br>";
}
それは SimpleXML の制限ですか? それとも私は何か間違ったことをしていますか?
よろしく