我使用NOW()
将日期插入数据库,然后查询结果。这是代码。
function get_content($id = ''){
if($id != ''):
$id = mysql_real_escape_string($id);
$sql = "SELECT * FROM cms_content WHERE id = '$id'";
$return = '<p><a href="index.php">Back to Content</a></p>';
else:
$sql = "SELECT * FROM cms_content ORDER BY id DESC";
endif;
$res = mysql_query($sql) or die(mysql_error());
if(mysql_num_rows($res) != 0):
while($row = mysql_fetch_assoc($res)) {
echo '<h1><a href="index.php?id=' . $row['id'] . ' "> ' . $row['title'] . '</a></h1>';
echo '<p>' . stripslashes($row['body']) . '</p>';
**echo '<p>' . $row['date_posted'] . '</p>';**
}
else:
echo '<p> You broke it!, this post dosn\'t exsist!';
endif;
echo $return;
echo '<p>' . $row['date_posted'] . '</p>';
是我回复日期的地方。当我从数据库回应这个时,我得到2012-07-25 19:00:46,因为这就是数据库中的内容。我的问题是,我将如何回应这一天,然后回应月份,然后是年份。理想情况下,这些都是独立的回声,所以我可以采用不同的方式。
答案 0 :(得分:2)
这更方便,代码更少。
$date = new DateTime($row['date_posted']);
$day = date->format('d');
$month = date->format('F');
$year = date->format('Y');
答案 1 :(得分:1)
由于格式已知,您只需使用:
list($year,$month,$day) = explode("-",substr($row['date_posted'],0,10));
然后你可以随意回应那些变量。
答案 2 :(得分:0)
$date = strtotime($row['date_posted'];
echo date('d', $date);
echo date('m', $date);
echo date('Y', $date);
或
$date = new DateTime($row['date_posted']);
echo $date->format('Y');
等
答案 3 :(得分:0)
您可以使用内置php
功能的date()
:http://us.php.net/manual/en/function.date.php
echo "<p>".date('j M, Y', $row['date_posted'])."</p>";
// would output <p>25 July, 2012</p>
可以将其修改为您想要的任何格式。
答案 4 :(得分:0)
另一种选择是使用* date_format *函数直接在SQL中执行此操作:http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format