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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Array_walk 值未顯示

Array_walk 值未顯示

PHP
慕工程0101907 2021-11-13 17:27:22
在獲取 highlight_description 時遇到問題。我想回應(yīng)highlights_title 和highlights_decription。這是數(shù)組{  "highlights_title": [    "Quiet Neighbourhood",    "Fabulous views",    "Great local community",    "Large play center in yard"  ],  "highlights_description": [    "Enjoy tranquil and relaxed atmosphere of the place",    "Get yourself surrounded by the stunning view opening",    "You will be delighted by the fantastic local community",    "Your kids will be happy having all these things around"  ]}這是我的代碼,它只顯示亮點(diǎn)標(biāo)題。如何同時回顯 highlighttitle 和 highlightdescription$data = "{"title":"Property Highlights","description":"Extensive upgrades and thorough maintenance have kept this home in prime condition. Hardwood floors and new carpets create a very comfortable living space.","content":"{\"highlights_title\":[\"Quiet Neighbourhood\",\"Fabulous views\",\"Great local community\",\"Large play center in yard\"],\"highlights_description\":[\"Enjoy tranquil and relaxed atmosphere of the place\",\"Get yourself surrounded by the stunning view opening\",\"You will be delighted by the fantastic local community\",\"Your kids will be happy having all these things around\"]}","module_tag":"div","bootstrap_size":"0","header_tag":"h3","header_class":"","style":"0"}"$highlights = json_decode($data, true);if(!empty($highlights)){    $content = $highlights['highlight_stitle'];    array_walk($content, function($value){        echo $value .'<br/>';    });}
查看完整描述

2 回答

?
神不在的星期二

TA貢獻(xiàn)1963條經(jīng)驗 獲得超6個贊

您可以通過這樣的 foreach 一起掃描兩個數(shù)組


if(!empty($highlights)) {

     foreach(array_map(null, $highlights['highlights_title'], $highlights['highlights_description']) 

              as list($title, $desc)) {

          echo $title.'\t'.$desc."<\br>\n";

     }

}


查看完整回答
反對 回復(fù) 2021-11-13
?
精慕HU

TA貢獻(xiàn)1845條經(jīng)驗 獲得超8個贊

您有第二個 json_encode 內(nèi)容,因此:


$data = '{"title":"Property Highlights","description":"Extensive upgrades and thorough maintenance have kept this home in prime condition. Hardwood floors and new carpets create a very comfortable living space.","content":"{\"highlights_title\":[\"Quiet Neighbourhood\",\"Fabulous views\",\"Great local community\",\"Large play center in yard\"],\"highlights_description\":[\"Enjoy tranquil and relaxed atmosphere of the place\",\"Get yourself surrounded by the stunning view opening\",\"You will be delighted by the fantastic local community\",\"Your kids will be happy having all these things around\"]}","module_tag":"div","bootstrap_size":"0","header_tag":"h3","header_class":"","style":"0"}';

$highlights = json_decode($data, true);

var_dump($highlights);

if (!empty($highlights)) {

    $content = json_decode($highlights["content"], true);

    foreach($content as $subcontent){

       foreach($subcontent as $value){

          echo $value . "<br/>";

       }

    }    

}


查看完整回答
反對 回復(fù) 2021-11-13
  • 2 回答
  • 0 關(guān)注
  • 153 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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