php pdo 中 字段+1的问题 ? 财富值85

2016-10-15 11:47发布

以下是代码

$this->sth = $this->pdo->prepare($sql); $this->sth->execute(array_values(array_merge($vals, $wheres))); return $this->sth->rowCount();

prepare的sql语句

update fb_articles set view_num = ? where id = ?

execute的数组

array(2) { [0]=> string(12) "view_num + 1" [1]=> string(2) "19" }

return 是0
如果将sql语句直接拼接执行是可以的,那么在pdo中要怎么使用呢

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
3条回答

把sql改了下:update fb_articles set view_num = view_num + 1 where id = ?
然后参数是array($id)。

一周热门 更多>