doujuchuan9915 2015-02-25 17:13
浏览 42
已采纳

PHP XML解析器 - 未找到属性时的Echo消息

Let's say I have the following xml file:

<menu_items>
  <food type="pizza" ingredient="cheese"/>
  <food type="spaghetti" ingredient="tomatoes"/>
  <food type="pizza" ingredient="pepperoni"/>
  <food type="hamburger" ingredient="beef"/>
  <!-- etc. -->
</menu_items>

And I have a piece of php code that grabs this xml file and looks for type="pizza" only. Then it echoes the ingredient of every pizza it finds.

$url = "http://example.com/data.xml";
    $xml = simplexml_load_file($url);
foreach($xml->food as $food){
    If ($food["type"] == "pizza")
        {echo $food["ingredient"] . "<br>";}
    else
        {echo "No pizzas found!";}
}

I would like it to echo "no pizzas found" when zero pizzas are found in the xml file. As expected, with the current php code I have, it echoes "pizza not found" over and over again for every type that is not pizza.

So if no pizzas are found at all then echo "no pizzas found" only once.

  • 写回答

1条回答 默认 最新

  • dongshendi3599 2015-02-25 17:24
    关注

    Try this:

    $url = "http://example.com/data.xml";
    $xml = simplexml_load_file($url);
    $pizzaflag = false;
    
    foreach($xml->food as $food) {
        if ($food["type"] == "pizza") {
            echo $food["ingredient"] . "<br>";
            $pizzaflag = true;
        }
    }
    
    if ($pizzaflag == false) {
        echo "No pizzas found!";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部