gpt4 book ai didi

php - Zend_Db -> update() 将我的值递增两次

转载 作者:行者123 更新时间:2023-11-29 03:39:14 25 4
gpt4 key购买 nike

这是我的代码:

$update_data = array('post_browe_count'=>new Zend_Db_Expr('post_browe_count+1'));

$rowaffected = $contentmodel->update_post('posts',$update_data,$id);

我的类直接从 Zend_Db_Table_Abstract 扩展,我该如何解决它

最佳答案

我在这里给你一个使用产品和递增数量字段的例子:

$table     = 'products'; 
$data = array('prd_qnty' => new Zend_Db_Expr('product_qnty + 1'));
$where[] = $db->quoteInto('product_id = ?', $this->pr_id);
$db->update($table, $data, $where);

只需尝试按上述方式进行查询。所以它一定对你有用。

如果我能为您提供更多帮助,请告诉我。

关于php - Zend_Db -> update() 将我的值递增两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16759145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com