Append a filter to a stream:<?php $f = fopen("test1.txt", "w");// Add "zlib.deflate" filterstream_filter_append($f, "zlib.deflate"); fclose($f);?> Definition and UsageThe stream_filter_append() function appends a filter to a stream....
stream_filter_append($fp,"string.rot13", STREAM_FILTER_WRITE); /* Write a simple string to the file * it will be ROT13 transformed at the end of the stream operation * way out */ fwrite($fp,"This is a test\n");// string data is ...
stream_context_set_params函数:为数据流、数据包或者上下文设置参数 stream_copy_to_stream函数:在数据流之间进行复制操作 stream_filter_append函数:为数据流添加过滤器 stream_filter_prepend函数:为数据流预备添加过滤器 stream_filter_register函数:注册一个数据流的过滤器并作为PHP类执行 stream_filter_remove函数:从...
若想把过滤器附加到现有的流上,要使用 stream_filter_append() 函数,下面我们以 string.toupper 过滤器演示如何把文件中的内容转换成大写字母 $handle = fopen('test.txt','rb'); stream_filter_append($handle,'string.toupper');while(feof($handle) !==true) { echo fgets($handle); } fclose($handle...
stream_copy_to_stream函数:在数据流之间进行复制操作 stream_filter_append函数:为数据流添加过滤器 stream_filter_prepend函数:为数据流预备添加过滤器 stream_filter_register函数:注册一个数据流的过滤器并作为PHP类执行 stream_filter_remove函数:从一个数据流中移除过滤器 ...
你可能会奇怪stream_filter_append中的 "string.rot13"这个变量来的莫名其妙,这实际上是PHP内置的一个过滤器。 使用下面的方法即可打印出PHP内置的流: $streamlist = stream_get_filters(); print_r($streamlist); 1. 2. 输出: Array ( [0] => convert.iconv.* ...
stream_filter_register(‘myfilter’, ‘MyFilter’); stream_filter_append($input, ‘myfilter’); while (!feof($input)) { $data = fread($input, 1024); // 对解析出的数据进行处理 } fclose($input); “` 2. ext-protobuf ext-protobuf扩展库提供了一组功能强大的API,用于对Protocol Buffer格式...
stream_filter_append() Appends a filter to a stream stream_filter_prepend() stream_filter_register() stream_filter_remove() stream_get_contents() stream_get_filters() stream_get_line() stream_get_meta_data() stream_get_transports() stream_get_wrappers() stream_is_local() ...
你可能会奇怪stream_filter_append中的 "string.rot13"这个变量来的莫名其妙,这实际上是PHP内置的一个过滤器。 使用下面的方法即可打印出PHP内置的流: 代码语言:javascript 复制 $streamlist=stream_get_filters();print_r($streamlist); 输出: 代码语言:javascript ...
stream_context_set_option stream_context_set_params stream_copy_to_stream stream_filter_append stream_filter_prepend stream_filter_register stream_filter_remove stream_get_contents stream_get_filters stream_get_line stream_get_meta_data stream_get_transports ...