Zend 使用 IN 使用 $db->quote() 更新查询


Zend Update query with IN using $db->quote()

谁能说出我哪里出错了?

$tmp = array();
    $tmp[] = 'account';
    //$tmp[] = 'tomwased';
    //  $tmp = 'eshantsahu,account';
        $qu = $this->_db->quote($tmp);
    //  print_r($qu);
        $this->_db->update('user',array('password' => 'dddd'),array("username IN ( ? )"=> $qu));

尝试使用下一个

$updateData = array('username' => 'newvalue');
$whereConditions = array();
$whereConditions[] = $this->_db->quoteInto('param1 = ?', 'val1');
$whereConditions[] = $this->_db->quoteInto('param2 IN (?)', array('val2','val3');
$whereConditions = join(" AND ", $whereConditions);
$this->_db->update($updateData, $whereConditions);