这是什么PHP数据结构?

时间:2013-05-17 15:18:36

标签: php arrays

我的原始状态有一个变量/数据结构,当var_dump()'ed'时,我看起来像这样:

string 'some name' (length=13)

string 'another name ' (length=16)

string 'another name ' (length=11)

我有一个函数可以获得相同的名称并预先给它们写一个字母。结果存储在如下数组中:

array (size=3)
  1 => 
   array (size=1)
    'name' => string 'A - the name ' (length=20)
  2 => 
   array (size=1)
    'name' => string 'A - the name ' (length=15)
  3 => 
   array (size=1)
    'name' => string 'C - the name' (length=17)

我需要修改后的数据与原始状态相同。

如何将数组结构转换为原始结构?

谢谢。

1 个答案:

答案 0 :(得分:0)

我知道你希望删除这封信吗?

foreach($myarrayname as $key => &$value) {
    $value = substr($value, 4);
}

要获得单个元素,请使用

$myarrayname[0] // for the first one, ...[1] for the second one and so on