[PATCH] Apache2Handler - Adding Output Filters

php.internals

Paul Querna

22 years ago
I added two new functions for handling output filters in the Apache2 Handler SAPI: bool apache_add_output_filter(string filter_name) - Attempts to add the named filter to the Filter Chain. array apache_get_output_filters() - Returns an array of all Active Output filters for this request. The ability to add an output filter is very helpful in the apache 2 model. For example with this I was able to add an XSLT output filter that I use in other areas to render XML generated from PHP to HTML. The attached patches are for both PHP4 CVS and PHP5 CVS. They are also online at: http://force-elite.com/~chip/patches/php-src/apache2-filters/ These are my first Patches for PHP. I think they are done correctly, but feedback is very welcome. -Paul Querna