如何从这个多维数组中显示值?

时间:2015-09-01 09:00:45

标签: php wordpress multidimensional-array advanced-custom-fields

如何从此给定数组接收图像网址并在图像标记内显示?从下面的数组中,您将获得所需的所有输入。此值从数据库中检索并存储在数组变量中。我想使用wordpress loop

显示来自此数组的Value
    chart.addAxis({ // Secondary yAxis
        id: tempId,
        title: {
            text: tempName
        },
        lineWidth: 2,
        lineColor: serie.color,
        opposite: opposition
    });

    var lbl = getLabelStatus_<?=$id?>(id);      

    chart.addSeries({
        name: tempName,
        type: serie.type,
        color: serie.color,
        yAxis: tempId,
        data: serie.data,
        dashStyle: serie.options.dashStyle,
        dataLabels: {
            enabled: lbl,
            rotation: serie.options.dataLabels.rotation
        }
    });

1 个答案:

答案 0 :(得分:0)

试试这个:

  echo $result[0]['url'];

如果它有多个索引,请使用foreach

   $ImgArr = [];
  foreach($result as $key => $val){
   $ImgArr[] = $val['url'];
  }
   print_r($ImgArr');