-2

我有一个 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数据库中。

有人能帮帮我吗?
谢谢你。

4

1 回答 1

0

在这种特殊情况下,由于您的数组键为“0”,您可以通过以下方式访问配对值

$array[0]

或者更一般地说,

$the_value = $the_array[$the_key];
于 2013-06-20T06:22:29.263 回答