PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

dbmnextkey> <dbmfirstkey
Last updated: Mon, 26 Nov 2007

view this page in

dbminsert

(PHP 4)

dbminsert — Inserts a value for a key in a DBM database

说明

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

Adds the value to the database with the specified key.

参数

dbm_identifier

The DBM link identifier, returned by dbmopen().

key

The added key

value

The added key value

返回值

Returns -1 if the database was opened read-only, 0 if the insert was successful, and 1 if the specified key already exists. (To replace the value, use dbmreplace().)



add a note add a note User Contributed Notes
dbminsert
schoch4 at starnet dot com
19-Oct-2000 08:20
In PHP 3, the key is passed as a C string with its length set to its strlen.  This can be a problem if you want to use the DBM file as an AuthDBMUserFile for apache with NETSCAPE_DBM_COMPAT defined.  In that case, apache needs a trailing NULL on the key, which this function can't do.

dbmnextkey> <dbmfirstkey
Last updated: Mon, 26 Nov 2007
 
 
show source | credits | sitemap | contact | advertising | mirror sites