Codeigniter 类似数据库类
我正在从头开始制作一些开源软件(不使用框架),并且我正在构建自己的数据库类来使用,因此查询会更简单,并且都通过相同的方法运行。
理想情况下,它会像 codeigniters 数据库类一样工作:
$db->where("field", "value");
$db->get();
等等,并决定如果已经有类似的东西,我也可能不会重新发明轮子,尽管谷歌搜索并没有给我带来太多。
有什么想法吗?谢谢你们。
I am moving onto making some open source software for kicks, from scratch (not using a framework) and I was building my own database class to use, so queries would be simpler and all run through the same methods.
Ideally it would work like codeigniters database class:
$db->where("field", "value");
$db->get();
So on and so forth, and decided I may as well not reinvent the wheel if there is already something out there like it, though google searching didn't bring me much.
Any ideas? Thanks guys.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Idiorm,一个适用于 PHP5+ 的流畅查询构建器。
https://github.com/j4mie/idiorm
Check out Idiorm, a fluent query builder for PHP5+.
https://github.com/j4mie/idiorm