php - 根据属性查找特定元素

标签 php xml xpath

我一直在回顾我所有的旧代码并尝试优化它。我最近偶然发现并让我感到困惑的是试图为此找到一个 xpath 解决方案:

function findit($search) {
    $i=0;
    foreach($xml as $page) { //loop to find specific $element based on $attribute
       if($page['src']==$search) { return $i; }
       $i++;
    }
}

需要返回$i,以便后面引用XML中的元素。

这似乎应该可行,而且我发现了一些 xpath 字符串,它们看起来应该可以工作,但实际上没有。他们通常引用 preceding-children 并通过 xpath() 函数对其进行计数,但我找不到原始来源了,也不知道如何将其翻译成一个 PHP xpath 字符串。

这可能吗?还是比我已经拥有的更好/更快/更有效?建议/解决方案?

编辑:对于 Tandu 的解决方案

我的 XML 文件示例

<range>
    <page src="attribute1" />
    <page src="attribute2" />
    etc...
    <page src="attribut20" />
</range>

在我当前的 PHP 函数中,$i 总是返回 0 但应该返回 $search 所在的任何位置。已编辑,因此不再需要转换 simplexml。

function findit($search) {
    $dom=new DOMDocument('1.0');
    $dom->load($file);
    $xpath=new DOMXPath($dom);
    $i=$xpath->evaluate("count(/range/page[@src='$search']/preceding-sibling::*)");
    die($dom->saveXML());
}

最佳答案

PHP 至少有两种(据我所知)处理 Xpath 的方法:DOMXPath图书馆,与DOMDocument一起工作, 和 SimpleXML ,它有自己的 xpath() 方法。如果您想计算实际表达式(例如在您的示例中获取 i),您必须使用 DOMXPath::evaluate()SimpleXML::xpath() 只会返回一个节点列表(DOMXPath::query() 也一样)。在 php 中也有 xpath_ 方法,但这些似乎是其他方法的功能版本,并且仍然需要 DOM 上下文节点对象。

我不确定上面示例中的 xml 是什么,但下面的示例使用了 DOMXPath。据我所知,没有简单的方法可以将 SimpleXML 转换为 DOMDocument。您只需单独加载 xml。

$xml = <<<XML
   <root>
      <child attribute="one" />
      <child attribute="one" />
      <child attribute="one" />
      <child attribute="one" />
      <child attribute="one" />
      <child attribute="two" />
      <child attribute="one" />
      <child attribute="one" />
      <child attribute="one" />
      <child attribute="one" />
      <child attribute="one" />
   </root>
XML;
$dom = new DOMDocument;
$dom->loadXML($xml);
//DOMXPath requires DOMDocument in its constructor
$xpath = new DOMXPath($dom);
//evaluate will return types .. we are expecting an int, not a DOMNodeList
//Look for a child node of root named "child" with attribute="two"
//Count all its preceding siblings.
$i = $xpath->evaluate('count(/root/child[@attribute="two"]/preceding-sibling::*)');

关于php - 根据属性查找特定元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7910892/

相关文章:

python - XPath:查找包含文本 X 而不是 Y 的元素

xml - 如何在 XPath 3 查询中引用其他 XML 文件

php - php中的支付api多维数组问题

php - 在团队中组织 PHP 开发(环境、配置等)

javascript - 想在html中的div中显示xml文件数据

android - 如何在没有 Android Studio 的情况下查看 XML 预览

java - 如何使用DOM在JAVA中向xml文件添加多个属性值

html - 使用 scrapy 和 xpath 在::before 和::after 之间抓取 HTML 元素

php - 允许根据设置的权限编辑模型以及 Laravel 中模型的属性值

php - 是否可以从 HTML 中提取内联 CSS?