Codeigniter 类似数据库类

发布于 2024-11-01 08:02:25 字数 261 浏览 0 评论 0原文

我正在从头开始制作一些开源软件(不使用框架),并且我正在构建自己的数据库类来使用,因此查询会更简单,并且都通过相同的方法运行。

理想情况下,它会像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兮子 2024-11-08 08:02:25

查看 Idiorm,一个适用于 PHP5+ 的流畅查询构建器。

https://github.com/j4mie/idiorm

Check out Idiorm, a fluent query builder for PHP5+.

https://github.com/j4mie/idiorm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文