RedBeanPHP 可以让你用 NoSQL 的语法来使用 ORM 框架。动态创建模型、配置和数据库的 orm 层。
ReadBeanPHP 支持数据库包括:CUBRID, MySQL, Postgres, SQLite 无需配置。
RedBeanPHP 是一个易于使用的 PHP ORM 工具:
示例代码:
$bean = R::dispense('email'); $bean->subject = 'Read this email'; $bean->date = date('Y-m-d H:i:s', time()); $id = R::store($bean); $email = R::load('email', $id); var_dump($email);