我正在尝试在 CakePHP 中为时间戳添加分钟。我希望在处理表单时获取时间戳。
请记住,我只是在学习这些东西。
这是我的索引视图中的表单代码...
<?php
echo $this->Form->create('Text');
$expirations = array('9999999'=>'Never','10'=>'10 Minutes','60'=>'1 Hour','1440'=>'1 Day','10080'=>'1 Week','40320'=>'1 Month','525600'=>'1 Year');
echo $this->Form->input('expiration', array('options' => $expirations), array('empty'=>false));
echo $this->Form->input('title');
echo $this->Form->input('body', array('rows' => '3'));
echo $this->Form->end('Upload');
?>
我想从我的“过期”输入中获取值并将该分钟数添加到当前时间。
我目前使用的 PHP 代码是:
DATE_ADD(CURRENT_TIMESTAMP, INTERVAL $expiration MINUTE)
其中 $expiration 是要添加的分钟数。
非常感谢您的帮助。