如何将 yyyy/mm/dd 转换为 dd/mm/yyyy?

发布于 2024-11-28 17:41:32 字数 236 浏览 0 评论 0原文

在 PHP 中,我正在使用 europedate 函数的日期转换,

strtotime($rowadd['your date']); 

但 0000/00/00 日期显示相同的字符串,它将

显示 default(ex:01/01/1970)。

我需要精确的零日期显示为零日期。
还有其他 PHP 函数吗?用于转换欧洲日期格式

In PHP I am using date convertion for europedate function like

strtotime($rowadd['your date']); 

but the 0000/00/00 date showing same string it will be

showing default(ex:01/01/1970).

I need exact zero date will be display as zero date.
any other PHP function are there? for convert europe date format

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

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

发布评论

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

评论(1

长梦不多时 2024-12-05 17:41:32
$date = date('d/m/Y', strtotime($yourtimestring));

对于 0,您可以手动将其替换为条件。

$date = date('d/m/Y', strtotime($yourtimestring));

for 0 you can just manually replace it with a conditional.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文