有没有好用的开源的php mysql class,类似medoo有没有好用的开源的php mysql class,类似medoo的那种但是medoo没有 orderby limit 等功能CI框架中的db类比较好用,但是我想脱离ci去用他的db类,现在还做不到有没有知道其他的好用的mysql class,最好是开源的成熟的 mysql?class MySQL PHP 分享到: ------解决方案--------------------medoo 不就很好的吗?medoo 是有 order by 的(http://medoo.in/api/where)$database->select("account", "user_id", [ "GROUP" => "type", // "ORDER" => "age DESC" "ORDER" => "age", // Must have to use it with ORDER together "HAVING" => [ "user_id[>]" => 500 ], // LIMIT => 20 "LIMIT" => [20, 100]]);// SELECT user_id FROM account// GROUP BY type// ORDER BY age// HAVING user_id > 500// LIMIT 20,100登入後複製