dbase 7.1.0

dBase database file access functions


These functions allow you to access records stored
in dBase-format (dbf) databases.

There is no support for indexes or memo fields.
The databases are automatically locked with blocking flock()s.

dBase files are simple sequential files of fixed length records.
Records are appended to the end of the file and deleted records
are kept until you call dbase_pack().

License: PHP

Changes

New features

- Full fledged arginfo is available under PHP 8 (Remi Collet)
- Calling dbase functions with wrong parameter types/values throws TypeExceptions and
ValueExceptions, respectively, instead of raising warnings under PHP 8 (Remi Collet)

Bug Fixes

- Fixed #80156 (Incomplete records may be written)
- Fixed #80488 (ReflectionParameter->getDefaultValue() throws for dbase_create())