No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

dbase_create

(PHP 5 < 5.3.0, dbase 5, dbase 7)

dbase_createCreates a database

Description

dbase_create ( string $filename , array $fields [, int $type = DBASE_TYPE_DBASE ] ) : resource

dbase_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.

PHP: dbase_create - Manual Home of Manuel PHP  Contents Haut

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 or DBASE_TYPE_FOXPRO.

PHP: dbase_create - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns a database link identifier if the database is successfully created, or FALSE if an error occurred.

PHP: dbase_create - Manual Home of Manuel PHP  Contents Haut

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.

PHP: dbase_create - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 Creating a dBase database file

<?php

// database "definition"
$def = array(
  array(
"date",     "D"),
  array(
"name",     "C",  50),
  array(
"age",      "N",   30),
  array(
"email",    "C"128),
  array(
"ismember""L")
);

// creation
if (!dbase_create('/tmp/test.dbf'$def)) {
  echo 
"Error, can't create the database\n";
}

?>

Find a PHP function

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-function.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

  1. View the html document Language of the document:fr Manuel PHP : http://php.net

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.

Contents Haut