我在php中创建了一个打印此
的数组Array ( [mark] => Array ( [0] => 3 [1] => 4 ) )
如何与阵列分开打印标记。例如只打印3。
答案 0 :(得分:6)
假设$array
是你的数组:
echo $array['mark'][0];
答案 1 :(得分:1)
打印所有值:
foreach($array as $value){
echo $value."<br />";
}
答案 2 :(得分:1)
$myArray = array('mark'=>array(3, 4));
您可以使用例如:
打印特定元素echo $myArray['mark'][0]; // this would print out 3
你也可以遍历数组:
foreach($myArray['mark'] => $item) {
echo $item;
}
// this would result it the printing of 3 first and then 4