gpt4 book ai didi

php - 如何在 Zend 中更新数据库表记录?

转载 作者:IT老高 更新时间:2023-10-28 23:49:16 26 4
gpt4 key购买 nike

我正在使用这样的选择,它正在成功获取记录:

$table = new Bugs();
$select = $table->select();
$select->where('bug_status = ?', 'NEW');
$rows = $table->fetchAll($select);

但是现在我想更新同一条记录。例如在简单的 MySQL 中。

UPDATE TableName Set id='2' WHERE id='1';

如何在 Zend 中执行上述查询?

谢谢

最佳答案

$data = array(
'field1' => 'value1',
'field2' => 'value2'
);
$where = $table->getAdapter()->quoteInto('id = ?', $id)

$table = new Table();

$table->update($data, $where);

关于php - 如何在 Zend 中更新数据库表记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4097234/

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