Re: Re: [PHP] script preprocessor?

2001-08-30 Thread Christian Reiniger
On Wednesday 29 August 2001 20:15, [EMAIL PROTECTED] wrote: I do not need a cmd-line utility but something I can use _in_ a PHP4 script without the need to apply changes to the interpreter or weird system interfaces. Something similiar to the #define preprocessing instructions of cc (or

[PHP] script preprocessor?

2001-08-29 Thread alvarez
Is there a macro preprocessor that can be used to substitute arbitrary sections of code with different code? define is documented as working for rvals only and my attempts to produce something more meaty lead to parse errors. Any advice? D. Alvarez Arribas [EMAIL PROTECTED] -- PHP

Re: [PHP] script preprocessor?

2001-08-29 Thread Christian Reiniger
On Wednesday 29 August 2001 12:24, [EMAIL PROTECTED] wrote: Is there a macro preprocessor that can be used to substitute arbitrary sections of code with different code? define is documented as working for rvals only and my attempts to produce something more meaty lead to parse errors.

Re: Re: [PHP] script preprocessor?

2001-08-29 Thread alvarez
I do not need a cmd-line utility but something I can use _in_ a PHP4 script without the need to apply changes to the interpreter or weird system interfaces. Something similiar to the #define preprocessing instructions of cc (or hopefully more flexible) would suit my needs. If your programm can