Re: [PHPTAL] Fwd: stripping or escaping php code in templates

2009-08-09 Thread Ionut Matei
Thank you all for your input. I want only to disable php blocks, to prevent echo-ing unescaped strings, like this: ?php echo $_SERVER['HTTP_REFERER; ? I'll go for a preFilter. Thanks! ___ PHPTAL mailing list PHPTAL@lists.motion-twin.com

Re: [PHPTAL] Fwd: stripping or escaping php code in templates

2009-08-09 Thread Iván -DrSlump- Montes
Have a look at PHP's tokenizer function token_get_all. It will give you a rock solid base for your filter since it uses the same parser used in the PHP engine. regards, /imv On Sun, Aug 9, 2009 at 8:40 PM, Ionut Matei johnu...@gmail.com wrote: Thank you all for your input. I want only to