I am going to alter the API so that you can pass a zval directly to the
filter implementation; this will make the code so much simpler.

I mentioned this last week, and I'd feel happier if there was less code
to maintain, so please consider reverting the parameter parsing commit.

Sorry if this makes all your effort for nothing,

--Wez.


On Mon, 13 Jan 2003, Moriyoshi Koizumi wrote:

> moriyoshi             Mon Jan 13 05:21:41 2003 EDT
>
>   Modified files:
>     /php4/ext/standard        filters.c
>   Log:
>   . Implemented a common filter parameter parsing function.
>   # For example "base64-encode.line-break-chars=--,base64-decode.blah=foobar"
>   # will be parsed and splitted into a zval array as
>   # array(2) {
>   #   ["base64-encode"]=>
>   #   array(1) {
>   #     ["line-break-chars"]=>
>   #     string(2) "--"
>   #   }
>   #   ["base64-decode"]=>
>   #   array(1) {
>   #     ["blah"] =>
>   #     string(6) "foobar"
>   #   }
>   # }
>   . Added automatic line-breaking feature for base64 encode filter. This
>     can be turned on by putting a option entry "base64-encode.line-length"
>     to the filter parameters.
>
>
>


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to