diff --git a/reference/stream/reference.xml b/reference/stream/reference.xml index 6a20db885e..9a06f684ae 100644 --- a/reference/stream/reference.xml +++ b/reference/stream/reference.xml @@ -1,5 +1,5 @@ - + Stream functions Streams @@ -26,7 +26,7 @@ built into PHP by default (See ), and additional, custom wrappers may be added either within a PHP script using stream_register_wrapper, - or directly from an extension using the . + or directly from an extension using the API Reference in . Because any variety of wrapper may be added to PHP, there is no set limit on what can be done with them. To access the list of currently registered wrappers, use stream_get_wrappers. @@ -34,10 +34,11 @@ A filter 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 PHP script using + Any number of filters may be stacked onto a stream. Custom + filters can be defined in a PHP script using stream_register_filter or in an extension using the - . To access the list of currently registered filters, - use stream_get_filters. + API Reference in . To access the list of currently + registered filters, use stream_get_filters. A stream is referenced as: scheme://target @@ -118,7 +119,7 @@ STREAM_REPORT_ERRORS Flag indicating if the wrapper - if responsible for raising errors using trigger_error + is responsible for raising errors using trigger_error during opening of the stream. If this flag is not set, you should not raise any errors.