What is the purpose of the dbase_get_record() function in PHP and how is it typically used?

The dbase_get_record() function in PHP is used to retrieve a single record from a dBase database file. This function is typically used when you need to access specific data from a dBase file and retrieve it for further processing or display.

// Open the dBase file
$db = dbase_open('data.dbf', 0);

// Get the record at index 1
$record = dbase_get_record($db, 1);

// Close the dBase file
dbase_close($db);

// Output the record data
print_r($record);