string(2) "28" ["m-6ren">
gpt4 book ai didi

php - foreach 得到一个值

转载 作者:行者123 更新时间:2023-12-02 05:36:04 24 4
gpt4 key购买 nike

当我做 var_dump($punkty);我得到了这样的东西:

array(1) 
{
[0]=> array(4)
{
["id"]=> string(2) "28"
["mapa"]=> string(97) "a:3s:3:"lat";s:17:"49.21103723075132";s:3:"lng";s:18:"22.330280542373657";s:4:"zoom";s:2:"17";}"
["miasto"]=> string(5) "Cisna"
["nazwa_obiektu"]=> string(44) "Cisna - noclegi u Mirosławy w Bieszczadach"
}
}

当我这样做时:

foreach ($punkty['mapa'] as $item)
{
echo $item;
}

我明白了

Invalid argument supplied for foreach() 

如何解决?

最佳答案

我认为你正在尝试这样做:

foreach($punkty as $item) {
echo $item['mapa'];
}

关于php - foreach 得到一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11687590/

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