gpt4 book ai didi

php - 如何从Mysql数据库中获取时分格式的时间格式?

转载 作者:可可西里 更新时间:2023-11-01 07:14:42 26 4
gpt4 key购买 nike

我正在使用 codeigniter,但在正确执行查询时遇到了问题。

$query = $this->db->query('SELECT datetime ...');
$resultdata['results'] = $query->result_array();

foreach($results as $result)
{
echo "<tr>";
echo "<td>".$result['datetime']."</td>";
echo "</tr>";
}

此代码生成以下格式的日期结果:2015-04-11 02:45:19。如何仅使用 HOURS 和 MINUTES 得出结果?谢谢你。

最佳答案

只需使用 MySQL 的 DATE_FORMAT()功能:

$query = $this->db->query('SELECT DATE_FORMAT(datetime, "%H:%i") as `time` ...

关于php - 如何从Mysql数据库中获取时分格式的时间格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29573122/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com