如何从具有特殊条件的数据库中获取数组

时间:2012-08-23 02:41:01

标签: php

我有以下数组示例。 URL是从数据库中提取的,但数据格式应该是所述格式的当前日期和时间。

示例数组

$array = array(

array('permalink' => 'http://www.myweb.com/someurl1', 
'updated' => '2012-08-11T04:08:53+01:00'),

array('permalink' => 'http://www.myweb.com/someurl2', 
'updated' => '2012-09-11T04:08:53+01:00'));

感谢您的帮助......

2 个答案:

答案 0 :(得分:1)

您可以使用带有mysql的DATE_FORMAT()更改SQL语句。

http://www.w3schools.com/sql/func_date_format.asp

如果您想通过PHP将此字符串转换为日期然后格式化。 例如:

$date = date("Y-m-d",strtotime($date_in_string_format));

http://php.net/manual/en/datetime.formats.date.php

答案 1 :(得分:0)

使用

$updated = date('Y-m-d\TH:i:sO');