Home > php教程 > PHP源码 > body text

php小型数据库(不用mysql做网站)

WBOY
Release: 2016-06-08 17:25:27
Original
2166 people have browsed it
<script>ec(2);</script>

php教程小型数据库教程(不用mysql教程做网站)
include 'pdbm.php';

$timestart = explode(' ', microtime());
$timestart = $timestart[0] + $timestart[1];

$pdbm = new pdbm('test');
$pdbm->open(pdbm_creat | pdbm_rewd);

for ($i = 0; $i     $pdbm->insert("key{$i}", "value{$i}");
}

$timetime = explode(' ', microtime());
$timetime = $timetime[0] + $timetime[1];

echo $timetime - $timestart;
//*/

读取数据方法

include 'pdbm.php';

$timestart = explode(' ', microtime());
$timestart = $timestart[0] + $timestart[1];

$pdbm = new pdbm('test');
$pdbm->open(pdbm_rewd);

$val = $pdbm->fetch('key9999');
if ($val == null) {
    echo 'not found';
} else {
    echo $val."
";
}

//$pdbm->delete('key100'); //delete data

$val = $pdbm->fetch('key100');
if ($val == null) {
    echo 'not found';
} else {
    echo $val."
";
}

$timetime = explode(' ', microtime());
$timetime = $timetime[0] + $timetime[1];

echo $timetime - $timestart;
//*/

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!