Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 2841 - 2860 из 3519.
Упорядочить по:
URL
|
дате изменения
2841. dbmdelete
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbmdelete -- Deletes the value for a key from a DBM database . bool dbmdelete ( int dbm_identifier, string key) . Deletes the value for key in the database. Returns FALSE if the key didn't exist in the database. Prev . Home . Next . dbmreplace . Up . dbmfirstkey
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbmdelete.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2842. dbmfirstkey
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbmfirstkey -- Retrieves the first key from a DBM database . string dbmfirstkey ( int dbm_identifier) . Returns the first key in the database. Note that no particular order is guaranteed since the database may be built using a hash-table, which doesn't guarantee any ordering. Prev . Home . Next . dbmdelete . Up . dbmnextkey
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbmfirstkey.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2843. dbminsert
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbminsert -- Inserts a value for a key in a DBM database . int dbminsert ( int dbm_identifier, string key, string value) . Adds the value to the database with the specified key. 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() .) . Prev . Home . Next . dbmfetch . Up . dbmreplace
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbminsert.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2844. dbmreplace
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbmreplace -- Replaces the value for a key in a DBM database . int dbmreplace ( int dbm_identifier, string key, string value) . Replaces the value for the specified key in the database. This will also add the key to the database if it didn't already exist. Prev . Home . Next . dbminsert . Up . dbmdelete
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbmreplace.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2845. dbmclose
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbmclose -- Closes a dbm database . bool dbmclose ( int dbm_identifier) . Unlocks and closes the specified database. Prev . Home . Next . dbmopen . Up . dbmexists
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbmclose.html -- 3.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2846. dbmexists
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbmexists -- Tells if a value exists for a key in a DBM database . bool dbmexists ( int dbm_identifier, string key) . Returns TRUE if there is a value associated with the key . Prev . Home . Next . dbmclose . Up . dbmfetch
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbmexists.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2847. dbmfetch
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbmfetch -- Fetches a value for a key from a DBM database . string dbmfetch ( int dbm_identifier, string key) . Returns the value associated with key . Prev . Home . Next . dbmexists . Up . dbminsert
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbmfetch.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2848. dbmopen
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbmopen -- Opens a DBM database . ... The first argument is the full-path filename of the DBM file to be opened and the second is the file open mode which is one of "r", "n", "c" or "w" for read-only, new (implies read-write, and most likely will truncate an already-existing database of the same name), create (implies read-write, and will not truncate an already-existing database of the same name) and read-write respectively. ... DBM Functions . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbmopen.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2849. dbase_numfields
PHP Manual . Prev . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_numfields -- Find out how many fields are in a dBase database . int dbase_numfields ( int dbase_identifier) . Returns the number of fields (columns) in the specified database. Field numbers are between 0 and dbase_numfields($db)-1, while record numbers are between 1 and dbase_numrecords($db). ... rec = dbase_get_record($db, $recno); $nf = dbase_numfields($db); for ($i=0; $i < $nf; $i++) { print $rec[$i]."<br>\n"; } . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-numfields.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2850. dbase_numrecords
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_numrecords -- Find out how many records are in a dBase database . int dbase_numrecords ( int dbase_identifier) . Returns the number of records (rows) in the specified database. Record numbers are between 1 and dbase_numrecords($db), while field numbers are between 0 and dbase_numfields($db)-1. Prev . Home . Next . dbase_numfields . Up . DBM Functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-numrecords.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2851. dBase functions
PHP Manual . ... These functions allow you to access records stored in dBase-format (dbf) databases. ... Two concurrent webserver processes modifying the same dBase file will very likely ruin your database. dBase files are simple sequential files of fixed length records. Records are appended to the end of the file and delete records are kept until you call dbase_pack() . ... dbase_add_record -- Add a record to a dBase database . dbase_replace_record -- Replace a record in a dBase database . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.dbase.html -- 5.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2852. dbase_get_record_with_names
PHP Manual . Prev . Next . 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) dbase_get_record_with_names -- Gets a record from a dBase database as an associative array . array dbase_get_record_with_names ( int dbase_identifier, int record) . Returns the data from record in an associative array. The array also includes an associative member named 'deleted' which is set to 1 if the record has been marked for deletion (see dbase_delete_record() ). ... Dates are left as strings . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-get-record-with-names.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2853. dbase_get_record
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_get_record -- Gets a record from a dBase database . array dbase_get_record ( int dbase_identifier, int record) . Returns the data from record in an array. The array is indexed starting at 0, and includes an associative member named 'deleted' which is set to 1 if the record has been marked for deletion (see dbase_delete_record() . ... Dates are left as strings . ... dbase_delete_record . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-get-record.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2854. dbase_delete_record
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_delete_record -- Deletes a record from a dBase database . bool dbase_delete_record ( int dbase_identifier, int record) . Marks record to be deleted from the database. To actually remove the record from the database, you must also call dbase_pack() . Prev . Home . Next . dbase_replace_record . Up . dbase_get_record
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-delete-record.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2855. dbase_replace_record
PHP Manual . Prev . Next . 3.0.11 - 3.0.18 only, PHP 4 >= 4.0.0) dbase_replace_record -- Replace a record in a dBase database . bool dbase_replace_record ( int dbase_identifier, array record, int dbase_record_number) . Replaces the data associated with the record record_number with the data in the record in the database. ... dbase_add_record . ... dbase_delete_record ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-replace-record.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2856. dbase_add_record
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_add_record -- Add a record to a dBase database . bool dbase_add_record ( int dbase_identifier, array record) . Adds the data in the record to the database. If the number of items in the supplied record isn't equal to the number of fields in the database, the operation will fail and FALSE will be returned. Prev . Home . Next . dbase_pack . Up . dbase_replace_record
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-add-record.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2857. dbase_pack
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_pack -- Packs a dBase database . bool dbase_pack ( int dbase_identifier) . Packs the specified database (permanently deleting all records marked for deletion using dbase_delete_record() ). Prev . Home . Next . dbase_close . Up . dbase_add_record
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-pack.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2858. dbase_close
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_close -- Close a dBase database . bool dbase_close ( int dbase_identifier) . Closes the database associated with dbase_identifier . Prev . Home . Next . dbase_open . Up . dbase_pack
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-close.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2859. dbase_open
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_open -- Opens a dBase database . int dbase_open ( string filename, int flags) . The flags correspond to those for the open() system call. Typically 0 means read-only, 1 means write-only, and 2 means read and write.) Returns a dbase_identifier for the opened database, or FALSE if the database couldn't be opened. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-open.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2860. dbase_create
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dbase_create -- Creates a dBase database . int dbase_create ( string filename, array fields) . The fields parameter is an array of arrays, each array describing the format of one field in the database. Each field consists of a name, a character indicating the field type, a length, and a precision. The types of fields available are: . ... These do not have a length or precision. ... Creating a dBase database file . ... dBase functions . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dbase-create.html -- 5.0 Кб -- 03.02.2002
Похожие документы
Похожие документы