示例#1
0
文件: Table.php 项目: shen2/mdo
 /**
  *
  * @return \SplFixedArray
  */
 public function fetchAllByPrimary($keys)
 {
     if (empty($keys)) {
         return new \SplFixedArray(0);
     }
     return $this->select()->where($this->_db->quoteIdentifier($this->_primary[0], true) . ' in (' . $this->_db->quoteArray($keys) . ')')->fetchAll();
 }