如何从此数组中获取值

时间:2013-07-12 16:45:52

标签: php arrays

我有这个数组:

array(2) { [0]=> string(6) "Coffee" [1]=> string(4) "best" } 

如何从Coffe中获取最佳值?

2 个答案:

答案 0 :(得分:2)

您可以使用索引访问数组。 PHP中的数组索引从0开始计数。

$myArray = array("Coffee","best");
$coffee = $myArray[0];
$best = $myArray[1];

答案 1 :(得分:-1)

这是一种更难以声明数组的方法

<?php

array(2) { [0]=> string(6) "Coffee" [1]=> string(4) "best" }

$arrayname['Key']; //access

?>