php – 平面文件数据库
作者:互联网
在PHP中创建平面文件数据库结构的最佳实践是什么?
我看到很多比较成熟的PHP平面文件框架试图实现类似SQL的查询语法,这在大多数情况下都是我的目的(我只会在那时使用数据库).
是否有任何优雅的技巧,以获得良好的性能和功能与小代码开销?
解决方法:
那么,平面数据库的本质是什么.它们是大还是小.它是带有数组的简单数组吗?如果它的简单说明userprofiles如此构建:
$user = array("name" => "dubayou",
"age" => 20,
"websites" => array("dubayou.com","willwharton.com","codecream.com"),
"and_one" => "more");
并保存或更新该用户的db记录.
$dir = "../userdata/"; //make sure to put it bellow what the server can reach.
file_put_contents($dir.$user['name'],serialize($user));
并为用户加载记录
function &get_user($name){
return unserialize(file_get_contents("../userdata/".$name));
}
但是,此实现将根据您所需的数据库的应用程序和性质而有所不同.
标签:php,sql,database,flat-file 来源: https://codeday.me/bug/20190930/1834523.html