如何将 yyyy/mm/dd 转换为 dd/mm/yyyy?
我想将 yyyy/mm/dd 转换为 dd/mm/yyyy 格式。所以,我使用 strtotime() 函数。但是当我从 mysql 获得零日期(如(0000/00/00))时。它将显示错误的日期,例如(01-01-1970)。
我需要像 0000/00/00 到 00/00/0000 这样的精确字符串。还有其他功能吗?
I would like to convert yyyy/mm/dd to dd/mm/yyyy format.So, I am using strtotime() function.but when I get zero date like(0000/00/00) from mysql. It will be showing wrong date like(01-01-1970).
I need exact string like 0000/00/00 to 00/00/0000. any other function are there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 MySQL 的 DATE_FORMAT() 函数
Try MySQL's DATE_FORMAT() function
尝试使用 strftime
Try to use strftime