我想使用此更新命令更新表,但没有任何事情发生。谁知道为什么?!
$db = Zend_Registry::get('db');
$updateData = array(
'user_type' => 0
);
$updateWhere = array(
'username = ?' => 'admin'
);
$res = $db->update('phpbb3_users', $updateData, $updateWhere);
答案 0 :(得分:1)
因为此代码正在为我更新
$updateData = array(
'user_type' => 0
);
$updateWhere = array(
'username' => 'admin'
);
或
$updateWhere = "username = 'admin'";
$db->update('phpbb3_users', $updateData, $updateWhere);
希望它一定能解决您的问题