Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 05cd670d8a02b2b4a0ffb1756f2e8308 > files > 3763

php-manual-zh-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
>Phar-&#62;startBuffering</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="PHP 手册"
HREF="index.html"><LINK
REL="UP"
TITLE="Phar archive stream and classes"
HREF="ref.phar.html"><LINK
REL="PREVIOUS"
TITLE="Phar->setStub"
HREF="function.phar-setstub.html"><LINK
REL="NEXT"
TITLE="Phar->stopBuffering"
HREF="function.phar-stopbuffering.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"
>PHP 手册</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.phar-setstub.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.phar-stopbuffering.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.phar-startbuffering"
></A
>Phar-&#62;startBuffering</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN179532"
></A
><P
>    (no version information, might be only in CVS)</P
>Phar-&#62;startBuffering&nbsp;--&nbsp;Start buffering Phar write operations, do not modify the Phar object on disk</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN179535"
></A
><H2
>说明</H2
>void <B
CLASS="methodname"
>Phar-&#62;startBuffering</B
> ( void  )<BR
></BR
><P
>&#13;   Although technically unnecessary, the <B
CLASS="function"
>startBuffering()</B
> method
   can provide a significant performance boost when creating or modifying a
   Phar archive with a large number of files.  Ordinarily, every time a file
   within a Phar archive is created or modified in any way, the entire Phar
   archive will be recreated with the changes.  In this way, the archive will
   be up-to-date with the activity performed on it.
  </P
><P
>&#13;   However, this can be unnecessary when simply creating a new Phar archive,
   when it would make more sense to write the entire archive out at once.
   Similarly, it is often necessary to make a series of changes and to ensure
   that they all are possible before making any changes on disk, similar to the
   relational database concept of transactions.  the
   <B
CLASS="function"
>startBuffering()</B
>/<B
CLASS="function"
>stopBuffering()</B
> pair
   of methods is provided for this purpose.
  </P
><P
>&#13;   Phar write buffering is per-archive, buffering active for the
   <TT
CLASS="literal"
>foo.phar</TT
> Phar archive does not affect changes
   to the <TT
CLASS="literal"
>bar.phar</TT
> Phar archive.
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN179549"
></A
><H2
>范例</H2
><P
>&#13;   <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN179552"
></A
><P
><B
>例 1. A <B
CLASS="function"
>Phar-&#62;startBuffering()</B
> example</B
></P
><P
>&#13;    </P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br /></font><font color="#FF8000">// make sure it doesn't exist<br /></font><font color="#007700">@</font><font color="#0000BB">unlink</font><font color="#007700">(</font><font color="#DD0000">'brandnewphar.phar'</font><font color="#007700">);<br /></font><font color="#0000BB">try </font><font color="#007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#0000BB">$p </font><font color="#007700">= new </font><font color="#0000BB">Phar</font><font color="#007700">(</font><font color="#0000BB">dirname</font><font color="#007700">(</font><font color="#0000BB">__FILE__</font><font color="#007700">) . </font><font color="#DD0000">'/brandnewphar.phar'</font><font color="#007700">, </font><font color="#0000BB">0</font><font color="#007700">, </font><font color="#DD0000">'brandnewphar.phar'</font><font color="#007700">);<br />} </font><font color="#0000BB">catch </font><font color="#007700">(</font><font color="#0000BB">Exception $e</font><font color="#007700">) {<br />&nbsp;&nbsp;&nbsp;&nbsp;echo </font><font color="#DD0000">'Could not create phar:'</font><font color="#007700">, </font><font color="#0000BB">$e</font><font color="#007700">;<br />}<br />echo </font><font color="#DD0000">'The new phar has ' </font><font color="#007700">. </font><font color="#0000BB">$p</font><font color="#007700">-&gt;</font><font color="#0000BB">count</font><font color="#007700">() . </font><font color="#DD0000">" entries\n"</font><font color="#007700">;<br /></font><font color="#0000BB">$p</font><font color="#007700">-&gt;</font><font color="#0000BB">startBuffering</font><font color="#007700">();<br /></font><font color="#0000BB">$p</font><font color="#007700">[</font><font color="#DD0000">'file.txt'</font><font color="#007700">] = </font><font color="#DD0000">'hi'</font><font color="#007700">;<br /></font><font color="#0000BB">$p</font><font color="#007700">[</font><font color="#DD0000">'file2.txt'</font><font color="#007700">] = </font><font color="#DD0000">'there'</font><font color="#007700">;<br /></font><font color="#0000BB">$p</font><font color="#007700">[</font><font color="#DD0000">'file2.txt'</font><font color="#007700">]-&gt;</font><font color="#0000BB">setCompressedGZ</font><font color="#007700">();<br /></font><font color="#0000BB">$p</font><font color="#007700">[</font><font color="#DD0000">'file3.txt'</font><font color="#007700">] = </font><font color="#DD0000">'babyface'</font><font color="#007700">;<br /></font><font color="#0000BB">$p</font><font color="#007700">[</font><font color="#DD0000">'file3.txt'</font><font color="#007700">]-&gt;</font><font color="#0000BB">setMetaData</font><font color="#007700">(</font><font color="#0000BB">42</font><font color="#007700">);<br /></font><font color="#0000BB">$p</font><font color="#007700">-&gt;</font><font color="#0000BB">setStub</font><font color="#007700">(</font><font color="#DD0000">"&lt;?php<br />function __autoload($class)<br /></font><font color="#007700">{</font><font color="#DD0000"><br />&nbsp;&nbsp;&nbsp;&nbsp;include 'phar://myphar.phar/' . str_replace('_', '/', $class) . '.php';<br /></font><font color="#007700">}</font><font color="#DD0000"><br />Phar::mapPhar('myphar.phar');<br />include 'phar://myphar.phar/startup.php';<br />__HALT_COMPILER();"</font><font color="#007700">);<br /></font><font color="#0000BB">$p</font><font color="#007700">-&gt;</font><font color="#0000BB">stopBuffering</font><font color="#007700">();<br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN179557"
></A
><H2
>参见</H2
><P
>&#13;   <P
></P
><TABLE
BORDER="0"
><TBODY
><TR
><TD
><A
HREF="function.phar-stopbuffering.html"
><B
CLASS="function"
>Phar-&#62;stopBuffering()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.phar-isbuffering.html"
><B
CLASS="function"
>Phar-&#62;isBuffering()</B
></A
></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.phar-setstub.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>起始页</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.phar-stopbuffering.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Phar-&#62;setStub</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.phar.html"
ACCESSKEY="U"
>上一级</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Phar-&#62;stopBuffering</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>