JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added fdb_delete() (UNTESTED)
authorJason Woofenden <jason183@herkamire.com>
Fri, 8 Jun 2007 09:09:19 +0000 (05:09 -0400)
committerJason Woofenden <jason183@herkamire.com>
Fri, 8 Jun 2007 09:09:19 +0000 (05:09 -0400)
fdb.php

diff --git a/fdb.php b/fdb.php
index 9eab198..99f63cb 100644 (file)
--- a/fdb.php
+++ b/fdb.php
@@ -137,4 +137,13 @@ function fdb_set($key, $data) {
        fdb_set_raw($key, $out);
 }
 
+function fdb_delete($key) {
+       $key = fdb_fix_key($key);
+       $path = fdb_get_dir() . "/$key";
+       if(file_exists($path)) {
+               return unlink($path);
+       }
+       return false;
+}
+
 ?>