Query: stream_filter_remove
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
STREAM_FILTER_REMOVE(3) 1 STREAM_FILTER_REMOVE(3) stream_filter_remove - Remove a filter from a streamSYNOPSISbool stream_filter_remove (resource $stream_filter)DESCRIPTIONRemoves a stream filter previously added to a stream with stream_filter_prepend(3) or stream_filter_append(3). Any data remaining in the filter's internal buffer will be flushed through to the next filter before removing it.PARAMETERSo $stream_filter - The stream filter to be removed.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 Dynamicly 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 "); rewind($fp); fpassthru($fp); fclose($fp); ?> The above example will output: Guvf vf a testSEE ALSOstream_filter_register(3), stream_filter_append(3), stream_filter_prepend(3). PHP Documentation Group STREAM_FILTER_REMOVE(3)
Related Man Pages |
---|
stream_set_timeout(3) - php |
unlink(3) - php |
rewind(3) - php |
stream_filter_register(3) - php |
stream_filter_remove(3) - php |
Similar Topics in the Unix Linux Community |
---|
Copy Files then with option of remove |
removing duplicate lines from a file |
Replacing Comma by Tab |
Gawk filter |
gzip vs pipe gzip: produce different file size |