如何获取每个节点FLOWER的所有属性值ID?
<Files>
<data id="1">
<Type>Flower</Type>
</data>
<data id="2">
<Type>Flower</Type>
</data>
<data id="3">
<Type>Flower</Type>
</data>
<data id="4">
<Type>Flower</Type>
</data>
</Files>
在mysql的情况下,它将像SELECT id from Files WHERE Type="Flower"
如何为这种情况编写xpath代码?
并在选项框中使用SimpleXML列出它。
<select>
<?php
foreach ($type as $id) {
echo '<option value="'.$id.'">'.$id.'</option>';
}
?>
</select>
答案 0 :(得分:1)
'//data[(./Type/text()="Flower")]/@id'
答案 1 :(得分:1)
要获取所有@id
属性的值,请尝试
/Files/data[normalize-space(Type) = 'Flower']/@id
答案 2 :(得分:1)
您的XML无效,结束根元素不匹配,Type
元素关闭为type
。 XML区分大小写。
Xpath工作使用位置路径和条件,位置路径是当前上下文中元素的分层路径。它们返回节点列表。可以使用条件过滤列表。
SimpleXMLElement对象有一个方法xpath()
来在关联节点的上下文中执行表达式。
$xml = <<<'XML'
<Files>
<data id="1">
<type>Flower</type>
</data>
<data id="2">
<type>Flower</type>
</data>
<data id="3">
<type>Flower</type>
</data>
<data id="4">
<type>Flower</type>
</data>
</Files>
XML;
$files = new SimpleXMLElement($xml);
$target = new SimpleXMLElement('<select/>');
foreach ($files->xpath('data[type = "Flower"]') as $data) {
echo '.';
$option = $target->addChild('option', $data['id']);
$option['value'] = $data['id'];
}
echo $target->asXml();
您不应该将XML创建为文本。使用XML Api。
DOM更具体,更强大。例如,您可以将创建的DOM序列化为HTML。
$source = new DOMDocument();
$source->loadXml($xml);
$xpath = new DOMXpath($source);
$target = new DOMDocument();
$select = $target->appendChild($target->createElement('select'));
foreach ($xpath->evaluate('/Files/data[type = "Flower"]') as $data) {
$option = $select->appendChild($target->createElement('option'));
$option->setAttribute('value', $data->getAttribute('id'));
$option->appendChild($target->createTextNode($data->getAttribute('id')));
}
echo $target->saveHtml($select);
答案 3 :(得分:0)
这是我如何使用答案如果你愿意,可以随意使用代码。 谢谢!
<?php
//I have used 2 given answer as example on how i used it. Feel Free to use the code below
$type = $_GET['type'];
if(file_exists("xml/data.xml")) {
$xml = simplexml_load_file('xml/data.xml') or die("Data Missing"); }
<!-- Code Example 1 -->
$ids = $xml->xpath('//data[(./Type/text()="'.$type.'")]/@id');
<!-- Code Example 2 -->
$idx = $xml->xpath('/Files/data[normalize-space(Type) = "'.$type.'"]/@id');
?>
<!-- Example 1 -->
<select>
<?php
//echo $ids[0];
foreach ($ids as $id) {
echo '<option value="'.$id[0].'">'.$id[0].'</option>';
}
?>
</select>
<!-- Example 2 -->
<select>
<?php
//echo $ids[0];
foreach ($idx as $id2) {
echo '<option value="'.$id2[0].'">'.$id2[0].'</option>';
}
?>
</select>
<a href="logout.php">Logout
</a>