RedBean PHP 可以让你用 NoSQL 的语法来使用 ORM 框架。其意思就是你不需要知道数据库的结构。
ReadBeanPHP 支持数据库包括:CUBRID, MySQL, Postgres, SQLite 无需配置。
示例代码:
$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);