Exemplo n.º 1
0
 public static function delete($table, $where = array())
 {
     $sql = "DELETE FROM {$table} WHERE " . \Meta\Core\Db::where($where);
     return \Meta\Core\Db::execute($sql);
 }