我有一个 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数据库中。
有人能帮帮我吗?
谢谢你。