mysql 中的 getdate()
我正在创建一个系统,该系统在完成某些操作时更新用户活动。 我有一个变量 $userhistory= '用户编辑了 '.$info.' 2010 年 7 月 14 日或 (07-14-2010);
我想知道如何自动获取日期。对于 sql 查询,我使用 NOW(),但在像 $userhistory 这样的变量中,我如何获取日期,它只需要这两种形式中的一种。不与时俱进。 另外,我正在更新数据库中的用户历史记录列,这是一个文本字段。这是正确的方法吗?我怎样才能只保存最近几次更新中的 5 或 10 条?
I am creating a system which updates the user activity when something is done.
I have a variable $userhistory= 'User edited '.$info.' on July 14 2010 or (07-14-2010);
I want to know how can i get the date automatically. for sql query i am using NOW(), but in a variable like $userhistory how do i get the date and it want it only in either of these forms. not along with the time.
Also, I am updating the column userhistory in the database, which is a text field. Is this the correct way to do it? How can i save only 5 or 10 of the last few updates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在更新或写入数据库条目时使用 NOW(),则存储日期(用户历史记录?)的列应该是 DATETIME 类型。
然后你会像平常一样运行 SQL:
然后在 PHP 中,对数据库结果使用 date() 来相应地格式化它:
If you are using NOW() when you update or write an entry to the database, the column storing the date (userhistory?) should be of DATETIME type.
Then you'd you'd run your SQL as normal :
Then in PHP, use date() on the database result to format it accordingly:
不使用 PHP 也可以做到这一点。
You can do it without PHP as well.