## ## $Id: be_null.inc,v 1.1 2001/03/12 21:25:57 dwethell Exp $ ## ## PHPLIB Blob Engine using nothing ## ## This is a "reference" class to be used only as an example. This should ## not be used in applications. ## ## It's also a good skeleton for writing a new Blob Engine class BE_Null { function blob_create() { return false; } function blob_open($id) { return false; } function blob_close($id) { return false; } function blob_delete($id) { return false; } function blob_read($id) { return false; } function blob_write($id, $data) { return false; } function halt($s) { echo "$s"; exit; } } ?>