第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用'simplexml'php循環(huán)遍歷xml文件圖像

使用'simplexml'php循環(huán)遍歷xml文件圖像

PHP
四季花海 2022-12-23 13:57:38
在谷歌上搜索了幾個(gè)小時(shí),沒(méi)有任何樂(lè)趣。我使用簡(jiǎn)單的 xml 并對(duì)我的 xml 文件進(jìn)行各種查詢。我可以很好地顯示圖像( 1 張圖像)。我無(wú)法讓 foreach 循環(huán)顯示所有圖像。好吧,我可以,但我使用了 [i++],它顯示了所有圖像,但不會(huì)停止循環(huán)!下面顯示 2 張圖像。首先是顯示 1 個(gè)圖像的基本顯示和我的理解。第二張圖片是我希望所有循環(huán)發(fā)生的地方。$reference  = $_POST['varname'];$xml =  simplexml_load_file('save.xml') or die("can not find file");$result = $xml->xpath("//property[property_reference='$reference']");foreach ( $result as $elements){<img class="card-img-top" height='240px' width='340px' src=" <?php echo $elements->pictures->picture[0]->filename  ; ?> " alt="Card image cap"    > } ;  <br><?php foreach( $elements as $image) { ?><img class="card-img-top" height='240px' width='340px' src=" <?php echo $elements->pictures->picture[All of the images]->filename ; ?> " alt="Card image cap"> }?> 
查看完整描述

1 回答

?
繁星淼淼

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超11個(gè)贊

看起來(lái)你需要在你的結(jié)構(gòu)中更深入地循環(huán),因?yàn)槟阌幸粋€(gè)數(shù)組的數(shù)組。


解決方案 1:更深層次的循環(huán)


<?php


$reference  = $_POST['varname'];

$xml = simplexml_load_file('save.xml') or die("can not find file");

$result = $xml->xpath("//property[property_reference='$reference']");

foreach ($result as $elements) {

    foreach ($elements as $pictures) {

        foreach ($pictures as $picture) { ?>

            <img class="card-img-top" height='240px' width='340px' src="<?php echo $picture->filename?> " alt="Card image cap"> 

        <?php }

    }

}

解決方案 2:使用更深層次的 XPath:


<?php


$reference  = $_POST['varname'];

$xml = simplexml_load_file('save.xml') or die("can not find file");

$pictures = $xml->xpath("//property[property_reference='$reference']/pictures");

foreach ($pictures as $picture) { ?>

    <img class="card-img-top" height='240px' width='340px' src="<?php echo $picture->filename?> " alt="Card image cap">

<?php }


查看完整回答
反對(duì) 回復(fù) 2022-12-23
  • 1 回答
  • 0 關(guān)注
  • 114 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)