tags:

views:

112

answers:

1

Can the php5apache_filter be used as an input filter?
Haven't found much documentation for php's filter sapi.

+2  A: 

The filter module does register an input filter static int php_input_filter().... But it doesn't do much except fetching all available post data. So I guess the answer is: no, you can't use it as input filter the way you want.

VolkerK