从php中检索没有键的数组中的数据

时间:2013-06-20 06:17:15

标签: php mysql arrays

我有一个php数组,我想从数组中获取值而不获取密钥 例如

$array = array($val);// $val = data comes from excel sheet  
print_r($array); //the out put which I get is - Array ( [0] => 123-456-789-abcdef/ )  

我想只获取123-456-789-abcdef等值。 仅获取值的目的是保存在mysql数据库中。

有人能帮帮我吗? 谢谢。

1 个答案:

答案 0 :(得分:0)

在这种特殊情况下,由于数组键为“0”,因此可以通过

访问配对值
$array[0]

或更一般地说,

$the_value = $the_array[$the_key];