我有一个XML文件,我正在使用PHP的Simplexml进行解析,但我遇到了通过节点迭代的问题。
XML:
<channel>
<item>
<title>Title1</title>
<category>Cat1</category>
</item>
<item>
<title>Title2</title>
<category>Cat1</category>
</item>
<item>
<title>Title3</title>
<category>Cat2</category>
</item>
</channel>
我的计数功能:
public function cat_count($cat) {
$count = 0;
$items = $this->xml->channel->item;
$size = count($items);
for ($i=0; $i<$size; $i++) {
if ($items[$i]->category == $cat) {
$count++;
}
}
return $count;
}
我是否忽略了代码中的错误,或者是否有其他首选方法来迭代节点?我也使用了foreach和while语句而没有运气,所以我很茫然。有什么建议吗?
编辑:在使用下面的xpath方法时,我注意到使用
foreach ($this->xml->channel->item as $item) {
echo $item->category;
}
将打印所有类别名称,但是,使用
foreach ($this->xml->channel->item as $item) {
if ($item->category == $cat) {
echo $item->category;
}
}
只会打印一个doubled类别的实例。即使我复制并粘贴了这些线条,也只有一个显示。这是否意味着XML结构可能无效?
答案 0 :(得分:1)
在XML文件中计算具有给定名称的元素的简单方法是使用xpath。试试这个:
private function categoryCount($categoryName) {
$categoryName = $this->sanitize($categoryName); // easy xpath injection protection
return count($this->xml->xpath("//item[category='$categoryName']"));
}
sanitize()函数应删除$categoryName
中的单引号和双引号以防止xpath注入。要同时获取包含引号的类别名称的查询,您需要根据它包含单引号或双引号来构建xpath查询字符串:
// xpath in case of single quotes in category name
$xpath = '//item[category="' . $categoryName . '"]';
// xpath in case of double quotes in category name
$xpath = "//item[category='" . $categoryName . "']";
如果您无法完全控制xml数据(例如,如果是使用用户生成的内容创建的),则应将此考虑在内。不幸的是,在像参数化查询这样的PHP中没有简单的方法。
在这里查看php xpath函数文档:http://php.net/manual/en/simplexmlelement.xpath.php
请参阅此处获取xpath参考:http://www.w3schools.com/xpath/xpath_syntax.asp