forked from neopack1/GoogleDrive-VideoStream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbm.php
More file actions
69 lines (45 loc) · 955 Bytes
/
dbm.php
File metadata and controls
69 lines (45 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
class DBM{
private $dbm;
private $dbm_file;
function __construct($file){
$this->dbm_file = $file;
#$this->openDBM($file);
}
function __destructor(){
#$this->closeDBM();
}
function openDBM($file){
$this->dbm = dba_open($file, "c", "flatfile");
if (!$this->dbm) {
echo "dba_open failed\n";
exit;
}
}
function readValue($key){
$this->openDBM($this->dbm_file);
$value = '';
if (dba_exists($key, $this->dbm)) {
$value = dba_fetch($key, $this->dbm);
#dba_delete($key, $this->dbm);
}
$this->closeDBM();
return $value;
}
function writeValue($key, $value){
$this->openDBM($this->dbm_file);
dba_replace($key, $value, $this->dbm);
$this->closeDBM();
}
function closeDBM() {
dba_close($this->dbm);
}
function _test(){
$dbm = new DBM;
$dbm->openDBM("/tmp/test.db");
$dbm->writeValue("test", "this is a test2");
$dbm->readValue("test");
$dbm->closeDBM();
}
}
?>