I am writing PHP extension.
Now from C function I need to execute whole PHP file which is already loaded to string:
char * str="<?PHP echo('-PHP-'); ?>-not php-<? echo('-again php-'); ?>";
I can't use zend_eval_string() because it will complain about non PHP tags.
Any ideas?
Thanks
Yuriy