dblist PHP 3.0

string dblist(void)

 

Describes the DBM-compatible library being used.

dbmclose PHP 3.0

bool dbmclose(int dbm_identifier)

 

Closes a DBM database.

dbmdelete PHP 3.0

int dbmdelete(int dbm_identifier, string key)

 

Deletes the value for a key from a DBM database.

dbmexists PHP 3.0

int dbmexists(int dbm_identifier, string key)

 

Tells if a value exists for a key in a DBM database.

dbmfetch PHP 3.0

string dbmfetch(int dbm_identifier, string key)

 

Fetches a value for a key from a DBM database.

dbmfirstkey PHP 3.0

string dbmfirstkey(int dbm_identifier)

 

Retrieves the first key from a DBM database.

dbminsert PHP 3.0

int dbminsert(int dbm_identifier, string key, string value)

 

Inserts a value for a key in a DBM database.

dbmnextkey PHP 3.0

string dbmnextkey(int dbm_identifier, string key)

 

Retrieves the next key from a DBM database.

dbmopen PHP 3.0

int dbmopen(string filename, string mode)

 

Opens a DBM database.

dbmreplace PHP 3.0

int dbmreplace(int dbm_identifier, string key, string value)

 

Replaces the value for a key in a DBM database.