如何正确格式化或更新数组中的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)