From a44bbd952f3068ceac6fb1148fcf4b22bef6fec2 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Tue, 7 Jan 2003 01:57:08 +0000 Subject: [PATCH] Document optional parameters git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@110842 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/stream/functions/stream-filter-append.xml | 6 ++++-- reference/stream/functions/stream-filter-prepend.xml | 6 ++++-- reference/stream/functions/stream-get-filters.xml | 10 ++++++---- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/reference/stream/functions/stream-filter-append.xml b/reference/stream/functions/stream-filter-append.xml index 03eee77bd2..041ce54416 100644 --- a/reference/stream/functions/stream-filter-append.xml +++ b/reference/stream/functions/stream-filter-append.xml @@ -1,5 +1,5 @@ - + stream_filter_append @@ -11,11 +11,13 @@ boolstream_filter_append resourcestream stringfiltername + stringparams Adds filtername to the list of filters attached to stream. This filter will be - added to the end of the list and + added with the specified params + to the end of the list and will therefore be called last during stream opperations. To add a filter to the beginning of the list, use stream_filter_prepend. diff --git a/reference/stream/functions/stream-filter-prepend.xml b/reference/stream/functions/stream-filter-prepend.xml index 0b10ae10ed..3f9e393e36 100644 --- a/reference/stream/functions/stream-filter-prepend.xml +++ b/reference/stream/functions/stream-filter-prepend.xml @@ -1,5 +1,5 @@ - + stream_filter_prepend @@ -11,11 +11,13 @@ boolstream_filter_prepend resourcestream stringfiltername + stringparams Adds filtername to the list of filters attached to stream. This filter will be - added to the beginning of the list and + added with the specified params + to the beginning of the list and will therefore be called first during stream opperations. To add a filter to the end of the list, use stream_filter_append. diff --git a/reference/stream/functions/stream-get-filters.xml b/reference/stream/functions/stream-get-filters.xml index f3d8589f1e..5848c5b3f3 100644 --- a/reference/stream/functions/stream-get-filters.xml +++ b/reference/stream/functions/stream-get-filters.xml @@ -1,5 +1,5 @@ - + stream_get_filters @@ -9,11 +9,13 @@ Description arraystream_get_filters - + boolsystem - Returns an indexed array containing the name of all stream filters - available on the running system. + Returns an indexed array containing the name of all user-defined stream filters + available on the running system. If the system + parameter is set to true, then system defined filters will be included in the returned + array as well. See Also: