We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
使用 SQLite。这里也有一个 PHP 类:
http://www.phpclasses.org/package/2107 -PHP-SQLite-database-access-wrapper.html
Use SQLite. It has a PHP class too here:
http://www.phpclasses.org/package/2107-PHP-SQLite-database-access-wrapper.html
显然已停止或放弃,但正是您正在寻找的:
PHP 文本文件数据库 API - PHP 文本数据库:使用 SQL 访问文本文件
PHP Flatfile 包 - 提供许多常见 SQL 命令的等效项
Apparently stalled or abandoned but quite what you are looking for:
PHP Text File Database API - PHP Text DB: access Text Files with SQL
PHP Flatfile package - provides equivalents to many common SQL commands
这是您要找的吗? askSam
is this what you're looking for? askSam
文件=表
文件夹 = 数据库
http://nodb.at/
尽快 - 尽可能简单,
想法如下:
数据库 = 文件夹
表=子文件夹
列=子文件夹中的文件
记录=列文件中的一行;)
所以理论上你可以在表中包含一个表,甚至可以使用文件系统链接(linux ln -sv命令)
file = table
folder = database
http://nodb.at/
ASAP - as simple as possible
the idea is like this:
database = folder
table = subfolder
column = file in subfolder
record = a line in column-file ;)
so theoretically you could have a table inside a table or even work with filesystem links (linux ln -sv command)