|
użytkowników online: 22
|
OPINIE UŻYTKOWNIKÓW
|
Prawdziwa skarbnica wiedzy na temat tworzenia stron WWW i nie tylko. Korzystam z porad praktycznie codziennie, jest mi to niezbędne w mojej pracy. Sam zajmuję się tworzeniem serwisów, ale porady pisane przez Darka sa dla mnie nieocenioną pomocą! Proste, czytelne i zrozumiałe dla każdego! Czekam na więcej!
Krzysztof Szypulski
KESS - projektowanie stron
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
XXI. dBase Functions
These functions allow you to access records stored in dBase-format
(dbf) databases.
dBase files are simple sequential files of fixed length records.
Records are appended to the end of the file and delete records are
kept until you call dbase_pack().
The types of dBase fields available are:
Tabela 1. Available types of fields | Field | dBase Type | Format | Additional informations |
|---|
| M | Memo | n/a | This type is not supported by PHP, such field will be ignored | | D | Date | YYYYMMDD | The field length is limited to 8 | | N | Number | A number |
You must declare a length and a precision (the number of digits
after the decimal point)
| | C | String | A string | You must declare a length. When retrieving data, the string
will be right-padded with spaces to fit the declared length. | | L | Boolean | T or Y for TRUE,
F or N for FALSE | Stored and returned as an integer (1 or 0) |
| Ostrzeżenie |
There is no support for indexes or memo fields. There is no
support for locking, too. Two concurrent webserver processes
modifying the same dBase file will very likely ruin your database.
We recommend that you do not use dBase files as your production
database. Choose any real SQL server instead; MySQL or Postgres
are common choices with PHP. dBase support is here to allow you to
import and export data to and from your web database, because the
file format is commonly understood by Windows spreadsheets and
organizers.
|
In order to enable the bundled dbase library and to use these functions,
you must compile PHP with the --enable-dbase
option.
To rozszerzenie nie definiuje posiada żadnych
dyrektyw konfiguracyjnych w pliku php.ini. To rozszerzenie nie posiada żadnych rodzajów zasobów.
Many examples in this reference require a dBase database. We will use
/tmp/test.dbf that will be created in the example of
dbase_create().
To rozszerzenie nie posiada żadnych stałych.
User Contributed NotesHadi Rusiah / deegos at yahoo dot com
08-May-2004 07:33
If you are using PHP < 5, you can use this function to retrieve dbf header
<?
function get_dbf_header($dbfname) {
$fdbf = fopen($dbfname,'r');
$dbfhdrarr = array();
$buff32 = array();
$i = 1;
$goon = true;
while ($goon) {
if (!feof($fdbf)) {
$buff32 = fread($fdbf,32);
if ($i > 1) {
if (substr($buff32,0,1) == chr(13)) {
$goon = false;
} else {
$pos = strpos(substr($buff32,0,10),chr(0));
$pos = ($pos == 0?10:$pos);
$fieldname = substr($buff32,0,$pos);
$fieldtype = substr($buff32,11,1);
$fieldlen = ord(substr($buff32,16,1));
$fielddec = ord(substr($buff32,17,1));
array_push($dbfhdrarr, array($fieldname,$fieldtype,$fieldlen,$fielddec));
}
}
$i++;
} else {
$goon = false;
}
}
fclose($fdbf);
return($dbfhdrarr);
}
$arr = get_dbf_header('/data/file.dbf');
print_r($arr);
?>
|