dbase_open

(PHP 4, PHP 5, PHP 7) Opens a database int dbase_open ( string $filename, int $mode ) dbase_open() opens a dBase database with the given access mode. Note: When safe mode is enabled, PHP checks whether the files or directories being operated upon have the same UID (owner) as the script that is being executed. Note: This function is affected by open_basedir. Parameters: filename

dbase_pack

(PHP 4, PHP 5, PHP 7) Packs a database bool dbase_pack ( int $dbase_identifier ) Packs the specified database by permanently deleting all records marked for deletion using dbase_delete_record(). Parameters: dbase_identifier The database link identifier, returned by dbase_open() or dbase_create(). Returns: Returns TRUE on success or FALSE on failu

filepro_fieldcount

(PHP 4, PHP 5 <= 5.1.6, PHP 7) Find out how many fields are in a filePro database int filepro_fieldcount ( void ) Returns the number of fields (columns) in the opened filePro database. Returns: Returns the number of fields in the opened filePro database, or FALSE on errors. See also: filepro() -

dbase_get_record_with_names

(PHP 4, PHP 5, PHP 7) Gets a record from a database as an associative array array dbase_get_record_with_names ( int $dbase_identifier, int $record_number ) Gets a record from a dBase database as an associative array. Parameters: dbase_identifier The database link identifier, returned by dbase_open() or dbase_create(). record_number Th

dbase_get_record

(PHP 4, PHP 5, PHP 7) Gets a record from a database as an indexed array array dbase_get_record ( int $dbase_identifier, int $record_number ) Gets a record from a database as an indexed array. Parameters: dbase_identifier The database link identifier, returned by dbase_open() or dbase_create(). record_number The index of the record.

dbase_numrecords

(PHP 4, PHP 5, PHP 7) Gets the number of records in a database int dbase_numrecords ( int $dbase_identifier ) Gets the number of records (rows) in the specified database. Note: Record numbers are between 1 and dbase_numrecords($db), while field numbers are between 0 and dbase_numfields($db)-1. Parameters: dbase_identifier The database link identifier, returned by dba

dbase_get_header_info

(PHP 5, PHP 7) Gets the header info of a database array dbase_get_header_info ( int $dbase_identifier ) Returns information on the column structure of the given database link identifier. Parameters: dbase_identifier The database link identifier, returned by dbase_open() or dbase_create(). Returns: An indexed array with an entry for each column in

dbase_delete_record

(PHP 4, PHP 5, PHP 7) Deletes a record from a database bool dbase_delete_record ( int $dbase_identifier, int $record_number ) Marks the given record to be deleted from the database. Note: To actually remove the record from the database, you must also call dbase_pack(). Parameters: dbase_identifier The database link identifier, returned by dbase_open() or dbase_create

dbase_numfields

(PHP 4, PHP 5, PHP 7) Gets the number of fields of a database int dbase_numfields ( int $dbase_identifier ) Gets the number of fields (columns) in the specified database. Note: Field numbers are between 0 and dbase_numfields($db)-1, while record numbers are between 1 and dbase_numrecords($db). Parameters: dbase_identifier The database link identifier, returned by dba

dbase_create

(PHP 4, PHP 5, PHP 7) Creates a database int dbase_create ( string $filename, array $fields ) dbase_create() creates a dBase database with the given definition. Note: When safe mode is enabled, PHP checks whether the files or directories being operated upon have the same UID (owner) as the script that is being executed. Note: This function is affected by open_basedir. Parameters: f