如何将 yyyy/mm/dd 转换为 dd/mm/yyyy?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 0,您可以手动将其替换为条件。
for 0 you can just manually replace it with a conditional.