如何在 Joomla 中以 dd-mm-yy 格式存储和显示日期?
我正在 Joomla 中开发一个组件。通过我的组件,我想将时间戳存储到“lastaccessed”字段。
我的问题是,如果我只是存储日期,那么 MySQL 会将其显示为“0000-00-00 00:00:00”
我正在使用 PHP 日期函数,如下所示:
$row->date_lastaccessed=date();
How can I store andretrieve the date in我的格式(dd-mm-yyyy hh:mm:ss ampm
)?
I am developing a component in Joomla. Through my component I want to store timestamp to "lastaccessed" field.
My problem is that, if I am simply storing the date, then MySQL is displaying it as "0000-00-00 00:00:00"
I am using the PHP date function like this:
$row->date_lastaccessed=date();
How can I store and retrieve the date in my format (dd-mm-yyyy hh:mm:ss ampm
)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否看过:
http://php.net/manual/en/function.date .php
Have you looked at:
http://php.net/manual/en/function.date.php