gpt4 book ai didi

php - 使用 PHP 中动态更新的谓词属性访问 XML 元素

转载 作者:行者123 更新时间:2023-12-03 16:59:36 25 4
gpt4 key购买 nike

新手在这里。PHP 中的 xpath() 函数出现问题。

XML 文件 (data.xml):

<?xml version="1.0" ?> 
<menu>
<food type="Pizza">

<item>
<name> Tomato &amp; Cheese </name>
<small price="5.50"/>
<large price="9.75"/>

</item>

<item>
<name> Onions </name>
<small price="6.85"/>
<large price="10.85"/>

</item>
</food>
</menu>

PHP代码:
   <?php 
$xml = simplexml_load_file("data.xml");
$types = $xml->xpath("/menu/food/@type");
foreach($types as $type){
echo("<h1>$type</h1>");
$menu = $xml->xpath("/menu/food[@type=$type]");
echo("<ul>");
foreach($menu as $submenu){
echo ("<li>$submenu</li>");
}
echo("</ul>");
}
?>

我有很多种食物。我想按顺序访问它们及其子类型。我上面的方法有问题。我似乎找不到它。
以下是我的预期输出。我如何使用 xpath() 来实现这一点?

预期输出:

比萨

=>番茄和奶酪

=> 洋葱

=>

食品

=> 酒吧

最佳答案

您只需要一个 xpath 查询,如下所示:

$xml = simplexml_load_file("data.xml");

// Get food items and iterate over them
$foods = $xml->xpath("/menu/food");
foreach($foods as $food){

// print type attribute
echo("<h1>{$food["type"]}</h1>");

// Iterate over food items and print their names
echo("<ul>");
foreach($food->item as $item){
echo ("<li>$item->name</li>");
}
echo("</ul>");
}

有这个xml:
<?xml version="1.0" ?>
<menu>
<food type="Pizza">
<item>
<name>Tomato &amp; Cheese</name>
<small price="5.50"/>
<large price="9.75"/>
</item>
<item>
<name>Onions</name>
<small price="6.85"/>
<large price="10.85"/>
</item>
</food>
<food type="Pasta">
<item>
<name>Bolognese</name>
<small price="5.50"/>
<large price="9.75"/>
</item>
<item>
<name>Carbonara</name>
<small price="6.85"/>
<large price="10.85"/>
</item>
</food>
</menu>

...上面的代码将产生:
<h1>Pizza</h1>
<ul>
<li>Tomato & Cheese</li>
<li>Onions</li>
</ul>

<h1>Pasta</h1>
<ul>
<li>Bolognese</li>
<li>Carbonara</li>
</ul>

关于php - 使用 PHP 中动态更新的谓词属性访问 XML 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34545578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com