将检索到的日期提取为月和代码点火器中的一天

发布于 2024-12-13 15:13:13 字数 94 浏览 0 评论 0原文

我有一个(日期时间)以这种格式存储在数据库中 2011-10-12 02:01:24

当检索此日期时,我想提取该日期,以便我可以显示没有其他日期值的日期或月份

I have a (date time) stored in database in this format 2011-10-12 02:01:24

when retrieve this date i want to extract that date so i can show the day or month without the other date value

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不回头走下去 2024-12-20 15:13:14

您可以使用 日期 & MySQL 的时间函数 或 PHP 函数,例如 strtotime()

例如,对于 strtotime()

$timestamp = strtotime('2011-10-12 02:01:24');

echo 'The month is '.date('F', $timestamp).' and the day number is '.date('d', $timestamp);

将输出:

月份是 10 月,天数是 12

You can use date & time functions of MySQL or PHP functions like strtotime().

For instance, with strtotime():

$timestamp = strtotime('2011-10-12 02:01:24');

echo 'The month is '.date('F', $timestamp).' and the day number is '.date('d', $timestamp);

Will outputs:

The month is October and the day number is 12

聚集的泪 2024-12-20 15:13:14

我用这段代码解决了这个问题:

在我看来

    <?php 
    $date_of_post = $r->date_nw;    
    $date = $date_of_post; // 6 october 2011 2:28 pm
    $stamp = strtotime($date); // outputs 1307708880
    ?>

    <?php echo date("d", $stamp); ?> // it prints out the day only
    <?php echo date("M", $stamp); ?> // it prints out the Month only like (Oct)

I solve this with this code:

in my view

    <?php 
    $date_of_post = $r->date_nw;    
    $date = $date_of_post; // 6 october 2011 2:28 pm
    $stamp = strtotime($date); // outputs 1307708880
    ?>

    <?php echo date("d", $stamp); ?> // it prints out the day only
    <?php echo date("M", $stamp); ?> // it prints out the Month only like (Oct)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文