No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

stream_filter_remove

(PHP 5 >= 5.1.0, PHP 7)

stream_filter_removeRemove a filter from a stream

Description

stream_filter_remove ( resource $stream_filter ) : bool

Removes a stream filter previously added to a stream with stream_filter_prepend() or stream_filter_append(). Any data remaining in the filter's internal buffer will be flushed through to the next filter before removing it.

PHP: stream_filter_remove - Manual Home of Manuel PHP  Contents Haut

Parameters

stream_filter

The stream filter to be removed.

PHP: stream_filter_remove - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns TRUE on success or FALSE on failure.

PHP: stream_filter_remove - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 Dynamically refiltering a stream

<?php
/* Open a test file for reading and writing */
$fp fopen("test.txt""rw");

$rot13_filter stream_filter_append($fp"string.rot13"STREAM_FILTER_WRITE);
fwrite($fp"This is ");
stream_filter_remove($rot13_filter);
fwrite($fp"a test\n");

rewind($fp);
fpassthru($fp);
fclose($fp);

?>

The above example will output:

Guvf vf a test

PHP: stream_filter_remove - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph