liamka / file-db
Single file database
Installs: 1 865
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Forks: 0
pkg:composer/liamka/file-db
Requires
- php: 8.1
This package is not auto-updated.
Last update: 2026-01-07 07:44:44 UTC
README
$db = new FileDB('/tmp/test');
for ($i = 1; $i <= 10; $i++) {
$db->set('the_prodigy'.rand(10, 111150), 'Best');
}
$a = $db->get('the_prodigy74039');
var_dump($a);
$b = $db->has('the_prodigy74039');
var_dump($b);
//$db->flush();