Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > a34ed6838d4b29d38abd504392a4a797 > files > 432

php-manual-es-4.3.0-2mdk.noarch.rpm

<HTML
><HEAD
><TITLE
>dio_open</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REL="HOME"
TITLE="Manual de PHP"
HREF="index.html"><LINK
REL="UP"
TITLE="Direct IO functions"
HREF="ref.dio.html"><LINK
REL="PREVIOUS"
TITLE="dio_fcntl"
HREF="function.dio-fcntl.html"><LINK
REL="NEXT"
TITLE="dio_read"
HREF="function.dio-read.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=ISO-8859-1"></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 de PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.dio-fcntl.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.dio-read.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.dio-open"
></A
>dio_open</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN14832"
></A
><P
>    (PHP 4 &#62;= 4.2.0)</P
>dio_open&nbsp;--&nbsp;
     Opens a new filename with specified permissions of flags and
     creation permissions of mode
    </DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN14835"
></A
><H2
>Description</H2
>resource <B
CLASS="methodname"
>dio_open</B
> ( string filename, int flags [, int mode])<BR
></BR
><P
>&#13;     <B
CLASS="function"
>dio_open()</B
> opens a file and returns a new file
     descriptor for it, or <TT
CLASS="constant"
><B
>FALSE</B
></TT
> if any error occurred.  If
     <TT
CLASS="parameter"
><I
>flags</I
></TT
> is O_CREAT, optional third parameter
     <TT
CLASS="parameter"
><I
>mode</I
></TT
> will set the mode of the file
     (creation permissions).  The <TT
CLASS="parameter"
><I
>flags</I
></TT
>
     parameter can be one of the following options:
     <P
></P
><UL
><LI
><P
>O_RDONLY - opens the file for read access</P
></LI
><LI
><P
>O_WRONLY - opens the file for write access</P
></LI
><LI
><P
>&#13;        O_RDWR - opens the file for both reading and
        writing
       </P
></LI
></UL
>
      The <TT
CLASS="parameter"
><I
>flags</I
></TT
> parameter can also include any
      combination of the following flags:
     <P
></P
><UL
><LI
><P
>&#13;        O_CREAT - creates the file, if it doesn't already exist
       </P
></LI
><LI
><P
>&#13;        O_EXCL - if both, O_CREAT and O_EXCL are set,
        <B
CLASS="function"
>dio_open()</B
> fails, if file already exists
       </P
></LI
><LI
><P
>&#13;        O_TRUNC - if file exists, and its opened for write access,
        file will be truncated to zero length.
       </P
></LI
><LI
><P
>&#13;        O_APPEND - write operations write data at the
        end of file</P
></LI
><LI
><P
>O_NONBLOCK -
        sets non blocking mode
       </P
></LI
></UL
>
    </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.dio-fcntl.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Inicio</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.dio-read.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>dio_fcntl</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.dio.html"
ACCESSKEY="U"
>Subir</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>dio_read</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>