获得“约会”从数据库中输入并添加秒数

发布于 2024-11-17 10:39:55 字数 492 浏览 0 评论 0原文

public function updateAuction($id)
{   
    $AuctionsTable = Doctrine_Core::getTable('auctions');

    $auction = $AuctionsTable->find($id);

    $auction->ends_at += 10; 

    $auction->save();
}

我正在使用 Doctrine 从数据库中获取记录。

我需要增加此记录的ends_at 列的秒数,该列是日期类型。

+= 当然不起作用。比方说,向ends_at 变量添加 10 秒的最快方法是什么?并处理了所有其他可能出现的麻烦(59 + 10 = 69 秒)。

也许我应该使用mysql的addtime()函数?但这是用 Doctrine 实现的吗?在学说上没有找到任何关于 addtime() 的内容。

public function updateAuction($id)
{   
    $AuctionsTable = Doctrine_Core::getTable('auctions');

    $auction = $AuctionsTable->find($id);

    $auction->ends_at += 10; 

    $auction->save();
}

I'm using Doctrine to get a record from the database.

I need to increase number of seconds on this records ends_at column, which is a date type.

+= of course didn't work. What is the quickest way to add, let's say, 10 seconds to ends_at variable? And having handled all the other nuisances that might appear (59 + 10 = 69 seconds).

Perhaps I should use mysql's addtime() function? But is that implemented with Doctrine? Didn't find anything about addtime() on doctrine.

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

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

发布评论

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

评论(2

梦纸 2024-11-24 10:39:55
  1. 将数据库中的值转换为 PHP 中的 DateTime 对象
  2. 使用 < a href="http://www.php.net/manual/en/datetime.add.php" rel="nofollow">DateTime::add 函数 添加秒
  3. 将结果值放回到数据库
  1. Convert the value from the DB into a DateTime object in PHP
  2. Use the DateTime::add function to add the seconds
  3. Put the resulting value back into the DB
静水深流 2024-11-24 10:39:55

试试这个:

$sec = new Zend_Date($auction->ends_at, Zend_Date::SECOND);
$auction->ends_at = $sec->addSecond(10);
$auction->save();

try this:

$sec = new Zend_Date($auction->ends_at, Zend_Date::SECOND);
$auction->ends_at = $sec->addSecond(10);
$auction->save();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文