隐藏字段在 zend 形式下不起作用

发布于 2024-11-28 00:33:45 字数 395 浏览 1 评论 0原文

我在数据库中有一个“date_created”字段,我想将其隐藏在表单中并将当前日期添加到 mysql 表中。 我正在 zend 表单中工作,下面的 date_created 元素代码不起作用。

$date = date('Y/m/d h:i:s ', time());

$form->addElement('hidden', 'date_created', array(
        'decorators'    => array('ViewHelper'),
        'multioptions'   => array(
                        $date
                        ),
        ));

已编辑格式

I have a "date_created" field in database and I want to make it hidden in form and current date add in mysql table.
I am working in zend form and below code for date_created element is not working.

$date = date('Y/m/d h:i:s ', time());

$form->addElement('hidden', 'date_created', array(
        'decorators'    => array('ViewHelper'),
        'multioptions'   => array(
                        $date
                        ),
        ));

edited for formatting

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

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

发布评论

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

评论(1

德意的啸 2024-12-05 00:33:45

为什么要将多个选项传递给隐藏字段?

它是 :

$form->addElement('hidden', 'date_created', array(
    'decorators' => array('ViewHelper'),
    'value'      => $date
));

Why are you passing multioptions to an hidden field ?

It's :

$form->addElement('hidden', 'date_created', array(
    'decorators' => array('ViewHelper'),
    'value'      => $date
));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文