0

如何正确格式化或更新数组中的date_created值,以便在我拥有相同的数组但其中包含一些修改后的值之后?

我想date_created用这个函数格式化一个值date("D, d F Y, H:i:s", strtotime($date_created));

这是转储数组的结果 - var_dump($query)

array
  0 => 
    array
      'id' => string '2' (length=1)
      'title' => string 'Title 2' (length=55)
      'date_created' => string '2011-03-09 08:04:14' (length=19)
  1 => 
    array
      'id' => string '1' (length=1)
      'title' => string 'Title 2' (length=57)
      'date_created' => string '2011-08-14 18:34:04' (length=19)
4

1 回答 1

2

您所要做的就是遍历数组,更改值并将子数组替换为同一索引中的原始数组。

foreach($query as $key => $subArray){
  $subArray['date_created'] = date("D, d F Y, H:i:s", strtotime($subArray['date_created']));
  $query[$key] = $subArray['date_created'];
}
于 2012-08-14T07:30:12.443 回答