Jump to content

horobey

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Contact Methods

  • ICQ
    109859024

Profile Information

  • Gender
    Not Telling
  • Location
    Ukraine

horobey's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. my procwssor is in very early stage. Right now forget it. Just lets concentrated on how to make Zend parse and execute the PHP file contained in the string?
  2. i should be able to process all valid PHP files. my extension is something to process PHP before executing and if everything is OK then just execute the code.
  3. <?PHP echo("PHP block 1<br>"); ?> this is not PHP<br> <% echo("php block 2<br>"); $v="this is not end %>"; %> this is not PHP<br> <script language="PHP"> $v=<<<EV <?PHP this is not PHP block ?> EV; </script> <? echo("<?PHP this is not PHP block?>"); ?> I think you can continue this sample. I mean it is difficult to split PHP file into valid PHP blocks I think I need to study Zend code...
  4. I am coding PHP extension. I need to execute PHP code from withing C function in this extesion. PHP code is stored in the string like char * str = \"<?PHP echo(\'test\'); ?>\"; now if I call zend_eval_string() it complains about <?PHP ?> tags. I would like the same functionality like zend_eval_string() but with possibility to pass whole PHP file to contained in the string. Any ideas? yuriy@horobey.com PS really tired looking to solve this...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.