使用 Zend Date 将当前日期插入 MySql

发布于 2024-12-07 01:27:21 字数 565 浏览 1 评论 0原文

我有一个基于 Zend 框架的网站。有一个表格供用户填写,输入的数据将插入数据库中。

用户不输入日期/时间。我想根据当前日期/时间填充数据值。日期字段的类型为日期时间

我不断收到以下错误消息:

Notice: Array to string conversion in D:\wamp\www\CNFSORG\library\Zend\Db\Statement\Pdo.php on line 228

我已尝试执行以下操作:

<?php $date = new Zend_Date(); ?>

也尝试执行以下操作:

<?php $date = new Zend_Db_Expr('NOW()'); ?>
<?php $date = new Zend_Db_Expr('CURDATE()'); ?>

如果有人能指出我正确的方向,我将非常感激。

提前致谢...

I have a website based on Zend Framework. There is a form for users to fill in and the entered data is inserted in the database.

The users don't enter the date/time. I would like to populate the data value based on the current date/time . The date field is of type datetime.

i'm constantly getting the following error message:

Notice: Array to string conversion in D:\wamp\www\CNFSORG\library\Zend\Db\Statement\Pdo.php on line 228

I have tried doing the following:

<?php $date = new Zend_Date(); ?>

also tried doing:

<?php $date = new Zend_Db_Expr('NOW()'); ?>
<?php $date = new Zend_Db_Expr('CURDATE()'); ?>

I would be very grateful if someone could point me towards the right direction.

thanks in advance...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

紅太極 2024-12-14 01:27:21

正确的答案是

<?php $date = new Zend_Db_Expr('NOW()'); ?>

你可以尝试使用类似的东西从 php 创建当前时间戳

<?php  $date = new \DateTime(); ?>

The Correct answer is

<?php $date = new Zend_Db_Expr('NOW()'); ?>

You can try create a current timestamp from php with something like that

<?php  $date = new \DateTime(); ?>
俏︾媚 2024-12-14 01:27:21

好吧,我已经为 SqlServer 完成了此操作,但我认为对于 MySql,您只需要更改您想要的数据库表达式即可。

$this->_colocation = new Application_Model_Colocation();
$solicitacao = $this->_colocation->find($post['hdnIdSolicitacao'])->current();
$solicitacao->data_chegada = new Zend_Db_Expr('getdate()');
$solicitacao->save();

希望有帮助。

Well, i'v done this for SqlServer, but i think that for MySql you just need to change the db-expression for the one you want.

$this->_colocation = new Application_Model_Colocation();
$solicitacao = $this->_colocation->find($post['hdnIdSolicitacao'])->current();
$solicitacao->data_chegada = new Zend_Db_Expr('getdate()');
$solicitacao->save();

Hope it helps.

不爱素颜 2024-12-14 01:27:21

在您的表类中使用以下代码:

    $tme =new Zend_Date();
    $data['tme']=$tme->now();
    $this->insert($data);

如果您有一列名称为 tme 且类型为 datetime ,则此代码将执行您想要的操作!

In your class of table use this code:

    $tme =new Zend_Date();
    $data['tme']=$tme->now();
    $this->insert($data);

If you have a column with tme name and type of datetime , this code will do what you want!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文