X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=fdb.php;h=a9bb59fa3c88336e2683ce2851865353bb9e588f;hb=0bdfef457a85585b652827116173a939e4172d0e;hp=9eab198049dbfe80c417f9ac914882bf206f6c38;hpb=cf7fd682a5ec01f52585d3fc4b54aff342b65861;p=wfpl.git diff --git a/fdb.php b/fdb.php index 9eab198..a9bb59f 100644 --- a/fdb.php +++ b/fdb.php @@ -33,6 +33,7 @@ require_once('code/wfpl/file.php'); +require_once('code/wfpl/binary.php'); # call this to set what directory is used to store the files function fdb_set_dir($dir) { @@ -137,4 +138,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; +} + ?>