dbase_create
(PHP 5 < 5.3.0, dbase 5, dbase 7)
dbase_create — Creates a database
Description
$filename
, array $fields
[, int $type
= DBASE_TYPE_DBASE
] ) : resourcedbase_create() creates a dBase database with the given definition. If the file already exists, it is not truncated. dbase_pack() can be called to force truncation.
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
-
The name of the database. It can be a relative or absolute path to the file where dBase will store your data.
-
fields
-
An array of arrays, each array describing the format of one field of the database. Each field consists of a name, a character indicating the field type, and optionally, a length, a precision and a nullable flag. The supported field types are listed in the introduction section.
Note:
The fieldnames are limited in length and must not exceed 10 chars.
-
type
-
The type of database to be created. Either
DBASE_TYPE_DBASE
orDBASE_TYPE_FOXPRO
.
Return Values
Returns a database link identifier if the database is successfully created,
or FALSE
if an error occurred.
Changelog
Version | Description |
---|---|
dbase 7.0.0 |
The type parameter has been added.
|
dbase 7.0.0 | The return value is now a resource instead of an int. |
Examples
Example #1 Creating a dBase database file
<?php
// database "definition"
$def = array(
array("date", "D"),
array("name", "C", 50),
array("age", "N", 3, 0),
array("email", "C", 128),
array("ismember", "L")
);
// creation
if (!dbase_create('/tmp/test.dbf', $def)) {
echo "Error, can't create the database\n";
}
?>
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-dbase-create.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.