xolf/io-db
Composer 安装命令:
composer require xolf/io-db
包简介
File Database
关键字:
README 文档
README
io-db
Easy setup within 30 seconds: composer require xolf/io-db
A static json database system
Fetch documents from the database
$user = $io->table('user')->document('admin'); echo $user->name;
Write to documents
$user = $io->table('user')->document('admin')->write(['password' => 123456]); echo $user->name . ' Password: ' . $user->password;
Find Documents
$users = $io->table('user')->documents()->where(['rights' => 'admin']); var_dump($users);
统计信息
- 总下载量: 167
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-05-18