gpt4 book ai didi

PHP Date - 如何添加一个字符串来分隔日期和时间

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:51:51 26 4
gpt4 key购买 nike

我想显示类似这样的日期和时间格式“May 23 at 12:30pm”。我在 PHP 手册中看到并发现:

// Prints something like: Monday 8th of August 2005 03:12:46 PM
echo date('l jS \of F Y h:i:s A');

修改后得到

 echo date('M j \of h:i a');

它给我 “5 月 23 日中午 12:30”

但是当我用 at 替换 of 时,它给了我 "May 23 a23 08:26 pm"

我不知道出了什么问题。

最佳答案

您需要对 at 进行转义,因为它们在 date() 中用作格式设置选项时具有特殊含义

echo date('M j \a\t h:i a');

See it in action

关于PHP Date - 如何添加一个字符串来分隔日期和时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16861567/

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