コード例 #1
0
 public function insertFixtures()
 {
     foreach ($this->values as $obj => $values) {
         $this->db->execute("INSERT INTO {$this->tableName} (" . implode(', ', array_keys($values)) . ")" . " VALUES (" . implode(', ', SActiveStore::arrayQuote(array_values($values))) . ")");
     }
 }