php_dba.pir - PHP dba Library
- void dba_close(resource handle)
Closes databaseNOT IMPLEMENTED.- bool dba_delete(string key, resource handle)
Deletes the entry associated with key If inifile: remove all other key linesNOT IMPLEMENTED.- bool dba_exists(string key, resource handle)
Checks,
if the specified key existsNOT IMPLEMENTED.- string dba_fetch(string key, [int skip ,] resource handle)
Fetches the data associated with keyNOT IMPLEMENTED.- string dba_firstkey(resource handle)
Resets the internal key pointer and returns the first keyNOT IMPLEMENTED.- array dba_handlers([bool full_info])
List configured database handlersNOT IMPLEMENTED.- bool dba_insert(string key, string value, resource handle)
If not inifile: Insert value as key,
return false,
if key exists already If inifile: Add vakue as key (next instance of key)NOT IMPLEMENTED.- array|false dba_key_split(string key)
Splits an inifile key into an array of the form array(0=>group,1=>value_name) but returns false if input is false or nullNOT IMPLEMENTED.- array dba_list()
List opened databasesNOT IMPLEMENTED.- string dba_nextkey(resource handle)
Returns the next keyNOT IMPLEMENTED.- resource dba_open(string path, string mode [, string handlername, string ...])
Opens path using the specified handler in modeNOT IMPLEMENTED.- bool dba_optimize(resource handle)
Optimizes (e.g.
clean up,
vacuum) databaseNOT IMPLEMENTED.- resource dba_popen(string path, string mode [, string handlername, string ...])
Opens path using the specified handler in mode persistentlyNOT IMPLEMENTED.- bool dba_replace(string key, string value, resource handle)
Inserts value as key,
replaces key,
if key exists already If inifile: remove all other key linesNOT IMPLEMENTED.- bool dba_sync(resource handle)
Synchronizes databaseNOT IMPLEMENTED.