Sophie

Sophie

distrib > Mandriva > 2008.1 > i586 > by-pkgid > 703d980c580707c382b4e43e25965bc5 > files > 1498

php-manual-pt_BR-5.2.4-1mdv2008.1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>http_send_file</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="Manual do PHP"
HREF="index.html"><LINK
REL="UP"
TITLE="HTTP"
HREF="ref.http.html"><LINK
REL="PREVIOUS"
TITLE="http_send_data"
HREF="function.http-send-data.html"><LINK
REL="NEXT"
TITLE="http_send_last_modified"
HREF="function.http-send-last-modified.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=UTF-8"></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 do PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.http-send-data.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.http-send-last-modified.html"
ACCESSKEY="N"
>Próxima</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.http-send-file"
></A
>http_send_file</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN71793"
></A
><P
>    (PECL)</P
>http_send_file&nbsp;--&nbsp;Send file</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN71796"
></A
><H2
>Descrição</H2
>bool <B
CLASS="methodname"
>http_send_file</B
> ( string file )<BR
></BR
><P
>&#13;   Sends a file with support for (multiple) range requests.
  </P
><P
>&#13;   This functions behaviour and further action is dependent on the following
   <A
HREF="ref.http.html#http.configuration"
>Definições INI</A
>s:
   <A
HREF="missing-stuff.html#http.configuration.send.not_found_404"
>http.send.not_found_404</A
>
    e <A
HREF="missing-stuff.html#http.configuration.log.not_found"
>http.log.not_found</A
>.
  </P
><P
>&#13;   If the <A
HREF="ref.http.html#http.configuration"
>Definições INI</A
> <A
HREF="missing-stuff.html#http.configuration.send.not_found_404"
>http.send.not_found_404</A
>
   is enabled and the <A
HREF="ref.http.html#http.configuration"
>Definições INI</A
> <A
HREF="missing-stuff.html#http.configuration.log.not_found"
>http.log.not_found</A
>
   points to a writable file, a log message is written when the <CODE
CLASS="parameter"
>file</CODE
> was not found.
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN71815"
></A
><H2
>Parâmetros</H2
><P
>&#13;   <P
></P
><DIV
CLASS="variablelist"
><DL
><DT
><CODE
CLASS="parameter"
>file</CODE
></DT
><DD
><P
>&#13;       the file to send
      </P
></DD
></DL
></DIV
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN71824"
></A
><H2
>Valores de retornado</H2
><P
>&#13;   Retorna <TT
CLASS="constant"
><B
>TRUE</B
></TT
> em caso de sucesso ou <TT
CLASS="constant"
><B
>FALSE</B
></TT
> em falhas.
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN71829"
></A
><H2
>Exemplos</H2
><P
>&#13;   <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN71832"
></A
><P
><B
>Exemplo 1. A <B
CLASS="function"
>http_send_file()</B
> example</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br />http_send_content_disposition</font><font color="#007700">(</font><font color="#DD0000">"document.pdf"</font><font color="#007700">, </font><font color="#0000BB">true</font><font color="#007700">);<br /></font><font color="#0000BB">http_send_content_type</font><font color="#007700">(</font><font color="#DD0000">"application/pdf"</font><font color="#007700">);<br /></font><font color="#0000BB">http_throttle</font><font color="#007700">(</font><font color="#0000BB">0.1</font><font color="#007700">, </font><font color="#0000BB">2048</font><font color="#007700">);<br /></font><font color="#0000BB">http_send_file</font><font color="#007700">(</font><font color="#DD0000">"../report.pdf"</font><font color="#007700">);<br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
><P
>O exemplo acima irá imprimir:</P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><PRE
CLASS="screen"
>HTTP/1.1 206 Partial Content
X-Powered-By: PHP/5.2.2
Accept-Ranges: bytes
Content-Length: 12345
Content-Range: bytes 0-12344
Content-Type: application/pdf
Content-Disposition: inline; filename="document.pdf"

%PDF...</PRE
></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN71838"
></A
><H2
>Veja também</H2
><P
>&#13;   <P
></P
><TABLE
BORDER="0"
><TBODY
><TR
><TD
><A
HREF="function.http-send-data.html"
><B
CLASS="function"
>http_send_data()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.http-send-stream.html"
><B
CLASS="function"
>http_send_stream()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.http-throttle.html"
><B
CLASS="function"
>http_throttle()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.http-send-content-type.html"
><B
CLASS="function"
>http_send_content_type()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.http-send-content-disposition.html"
><B
CLASS="function"
>http_send_content_disposition()</B
></A
></TD
></TR
><TR
><TD
>the <A
HREF="missing-stuff.html#http.HttpResponse"
><B
CLASS="classname"
>HttpResponse</B
></A
> class if you are using PHP-5.1 and above</TD
></TR
></TBODY
></TABLE
><P
></P
>
  </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.http-send-data.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Principal</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.http-send-last-modified.html"
ACCESSKEY="N"
>Próxima</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>http_send_data</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.http.html"
ACCESSKEY="U"
>Acima</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>http_send_last_modified</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>