dbm数据库详解(1)

dbm数据库详解(1)

dbm数据库数据库是从文本型数据库发展过来的
相对文本数据库,dbm数据库存储量多,检索方便
相对mysql数据库,dbm使用更加灵活。。

测试是否支持dbm操作函数
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<body>
<?php
$db = dbmopen('db/mydb.db','c');
dbmclose($db);
?>
</body>
</html>

如果没有显示 flat file support enabled
则要在c:\windows\php.ini找到
;extension=php_db.dl
去掉前面的分号,保存,重启服务器,问题解决l

学习中

学习