gpt4 book ai didi

php - 从sql获取时格式化时间

转载 作者:行者123 更新时间:2023-12-01 00:19:49 25 4
gpt4 key购买 nike

我想格式化我的日期和时间,但目前我不知道如何设置,我得到的输出类似于 2015-12-16 02:24:33 但我想得到这样的东西 8th August 2015 03:12:46 PM 我该怎么做

$note_query = mysql_query("SELECT * FROM `notes` WHERE `user_id` = $my_id");
while ($run_note = mysql_fetch_assoc($note_query))
{
$note_date = $run_note['Note_added_dat'];
echo $note_date;
}

最佳答案

尝试使用 php 日期格式以这种方式格式化您的日期。

   $note_query = mysql_query("SELECT * FROM `notes` WHERE `user_id` = $my_id");
while ($run_note = mysql_fetch_assoc($note_query)){
$note_date = $run_note['Note_added_dat'];
$formated_date=date("jS F Y H:i:s A",strtotime($note_date));
echo $note_date;
echo $formated_date;
}

查看其他格式:http://php.net/manual/en/function.date.php

编辑:根据评论

$date='2015-12-16 02:24:33';
$formated_date=date("jS M Y H:i:s A",strtotime($date));
echo $formated_date;

关于php - 从sql获取时格式化时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34303082/

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