Sophie

Sophie

distrib > PLD > ac > amd64 > media > dist > by-pkgid > dd8ef74e7a184506d40e4328053fb785 > files > 415

php-manual-ro-20051028-1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML
><HEAD
><TITLE
>dbase_get_header_info</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REL="HOME"
TITLE="Manual PHP"
HREF="index.html"><LINK
REL="UP"
TITLE="dBase Functions"
HREF="ref.dbase.html"><LINK
REL="PREVIOUS"
TITLE="dbase_delete_record"
HREF="function.dbase-delete-record.html"><LINK
REL="NEXT"
TITLE="dbase_get_record_with_names"
HREF="function.dbase-get-record-with-names.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=ISO-8859-2"></HEAD
><BODY
CLASS="refentry"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Manual PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.dbase-delete-record.html"
ACCESSKEY="P"
>Înapoi</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.dbase-get-record-with-names.html"
ACCESSKEY="N"
>Înainte</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.dbase-get-header-info"
></A
>dbase_get_header_info</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN18033"
></A
><P
>    (PHP 5)</P
>dbase_get_header_info&nbsp;--&nbsp;Get the header info of a dBase database</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN18036"
></A
><H2
>Description</H2
>array <B
CLASS="methodname"
>dbase_get_header_info</B
> ( int dbase_identifier)<BR
></BR
><P
>&#13;     Returns information on the column structure of the database referenced by
     <VAR
CLASS="parameter"
>dbase_identifier</VAR
>. For each column in the database,
     there is an entry in a numerically-indexed array. The array index starts
     at 0. Each array element contains an associative array of column
     information. If the database header information cannot be read, <TT
CLASS="constant"
><B
>FALSE</B
></TT
>
     is returned.
    </P
><P
>&#13;     The array elements are:
     <P
></P
><DIV
CLASS="variablelist"
><DL
><DT
>name</DT
><DD
><P
>&#13;         The name of the column
        </P
></DD
><DT
>type</DT
><DD
><P
>&#13;         The human-readable name for the dbase type of the column (i.e. date,
         boolean, etc)
        </P
></DD
><DT
>length</DT
><DD
><P
>&#13;         The number of bytes this column can hold
        </P
></DD
><DT
>precision</DT
><DD
><P
>&#13;         The number of digits of decimal precision for the column
        </P
></DD
><DT
>format</DT
><DD
><P
>&#13;         A suggested <A
HREF="function.printf.html"
><B
CLASS="function"
>printf()</B
></A
> format specifier for the column
        </P
></DD
><DT
>offset</DT
><DD
><P
>&#13;         The byte offset of the column from the start of the row
        </P
></DD
></DL
></DIV
>
    </P
><P
>&#13;     <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN18075"
></A
><P
><B
>Exemplu 1. Showing header information for a dBase database file</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br /></font><font color="#FF8000">// Path to dbase file<br /></font><font color="#0000BB">$db_path </font><font color="#007700">= </font><font color="#DD0000">"/tmp/test.dbf"</font><font color="#007700">;<br /><br /></font><font color="#FF8000">// Open dbase file<br /></font><font color="#0000BB">$dbh </font><font color="#007700">= </font><font color="#0000BB">dbase_open</font><font color="#007700">(</font><font color="#0000BB">$db_path</font><font color="#007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;or die(</font><font color="#DD0000">"Error! Could not open dbase database file '$db_path'."</font><font color="#007700">);<br /><br /></font><font color="#FF8000">// Get column information<br /></font><font color="#0000BB">$column_info </font><font color="#007700">= </font><font color="#0000BB">dbase_get_header_info</font><font color="#007700">(</font><font color="#0000BB">$dbh</font><font color="#007700">);<br /><br /></font><font color="#FF8000">// Display information<br /></font><font color="#0000BB">print_r</font><font color="#007700">(</font><font color="#0000BB">$column_info</font><font color="#007700">);<br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
    </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.dbase-delete-record.html"
ACCESSKEY="P"
>Înapoi</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Acas&#227;</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.dbase-get-record-with-names.html"
ACCESSKEY="N"
>Înainte</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>dbase_delete_record</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.dbase.html"
ACCESSKEY="U"
>Sus</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>dbase_get_record_with_names</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>