从PHP数组中获取数据

时间:2016-03-01 07:30:28

标签: php arrays

我有变量$alldatesprint_r带来了以下内容:

Array ( [0] => Array ( [0] => 24. May 2016 08:30 - 17:00 [1] => 7. June 2016 08:30 - 17:00 ) )

我需要在PDFordered下显示日期(可能多于两个),例如:

24. May 2016 08:30 - 17:00
7. June 2016 08:30 - 17:00

如何get来自datesarray他们的display

3 个答案:

答案 0 :(得分:3)

foreach ($alldates as $index){
   echo $index."<br/>";
}

我不确定你的阵列,替代方式:

foreach ($alldates[0] as $index){
   echo $index."<br/>";
}

答案 1 :(得分:0)

试试这个:

foreach ($alldates as $date) {

   echo $date . '<br />';
}

或者这里是另一种方式

$count = count($alldates);

for ($i = 0; $i < $count; $i++) {

   echo $alldates[i] . '<br />';
}

答案 2 :(得分:0)

如果它的多维数组如下所示,可以使用嵌套循环:

Array
(
    [0] => Array
        (
            [0] => 24. May 2016 08:30 - 17:00
            [1] => 7. June 2016 08:30 - 17:00
        )

    [1] => Array
        (
            [0] => 24. May 2016 08:30 - 17:00
            [1] => 7. June 2016 08:30 - 17:00
        )

)

foreach ($alldates as $s_date){       
   foreach ($s_date as $n_date){
      echo $n_date."<br/>";  
   }
}