Spelling/Grammar/Punctuation/Etc...

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@110554 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sara Golemon 2003-01-05 07:43:11 +00:00
parent 4f2c2288d0
commit 3a55512f59

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<reference id="ref.stream">
<title>Stream functions</title>
<titleabbrev>Streams</titleabbrev>
@ -26,7 +26,7 @@
built into <literal>PHP</literal> by default (See <xref linkend="wrappers"/>),
and additional, custom wrappers may be added either within a
PHP script using <function>stream_register_wrapper</function>,
or directly from an extension using the <xref linkend="streams"/>.
or directly from an extension using the API Reference in <xref linkend="streams"/>.
Because any variety of wrapper may be added to <literal>PHP</literal>,
there is no set limit on what can be done with them. To access the list
of currently registered wrappers, use <function>stream_get_wrappers</function>.
@ -34,10 +34,11 @@
<simpara>
A <literal>filter</literal> is a final piece of code which may perform
opperations on data as it is being read from or written to a stream.
Filters may be defined in a <literal>PHP</literal> script using
Any number of filters may be stacked onto a stream. Custom
filters can be defined in a <literal>PHP</literal> script using
<function>stream_register_filter</function> or in an extension using the
<xref linkend="streams"/>. To access the list of currently registered filters,
use <function>stream_get_filters</function>.
API Reference in <xref linkend="streams"/>. To access the list of currently
registered filters, use <function>stream_get_filters</function>.
</simpara>
<para>
A stream is referenced as: <parameter>scheme</parameter>://<parameter>target</parameter>
@ -118,7 +119,7 @@
<row>
<entry><constant>STREAM_REPORT_ERRORS</constant></entry>
<entry><literal>Flag</literal> indicating if the <literal>wrapper</literal>
if responsible for raising errors using <function>trigger_error</function>
is responsible for raising errors using <function>trigger_error</function>
during opening of the stream. If this flag is not set, you
should not raise any errors.
</entry>