以日期时间格式存储当前日期和时间 zend
我在数据库中有一个名为 date_time
的字段,其类型为 datetime
。 我有一个表单,提交时需要在 date_time 字段中输入当前日期和时间。 如何编写代码,以便将当前日期时间
插入到date_time
字段中。 以下是我的代码:(我知道我不能像这样调用 NOW()
,但我想展示我想要实现的目标)
$qcData = Array(
"date_time" => NOW(),
"note" => $note
);
$qcNotes = new App_Model_DbTable_QCNotes();
$qcNotes->insert($qcData);
I have a field called date_time
in the database which is of type datetime
.
I have a form which on submit needs to enter the current date and time in the date_time field.
How do I write my code so that the date_time
field gets inserted with the current datetime
.
The following is my code: (I know I can't call NOW()
like that, but I wanted to show what I want to achieve)
$qcData = Array(
"date_time" => NOW(),
"note" => $note
);
$qcNotes = new App_Model_DbTable_QCNotes();
$qcNotes->insert($qcData);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是来自文档的
here it is from the docs
你可以使用这个:
You can use this: