在 PHP 中从 sqlite 数据库获取应用程序配置
我有一个 sqlite 数据库,其中有一个 config 表,其中包含 3 行:id、config 和 value。
我想在变量中获取此表中的设置:我该怎么做?
I have an sqlite database with a config table with 3 rows: id, config and value.
I'd like to get the settings in this table in variables: how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是如何在 PHP 中使用 SQLite 的文档:
https://www.php .net/manual/en/book.sqlite.php
编辑:在网站上您可以看到它是如何工作的
Here is a documentation how to use SQLite with PHP:
https://www.php.net/manual/en/book.sqlite.php
Edit: On the site you can see how it works