I want to run another php script (like external function) within a TpsvPHP.RunCode, and pass the parameter and get the result in pzval way.

Here is possible ways I have thought:

1.Just using php include: insert a include() before every script when execute RunCode. I don't know how much will this slow down the execution if there's a lot of functions to include.

2.Register the function names using TPHPEngine.RefreshLibrary, and try to execute the php function code in the delphi function handler using a new TpsvPHP in the same thread, and use php_delphi_register_variables to register parameter as global variables for the function. I don't know is it possible to do this in the same thread.

3.Same as the way 2, but using a new thread. I think this way should be OK, and my doubt is: Is it really necessary to using a new thread? and, if must using a new thread, should we copy the pzval when register the parameter pass to delphi function handler, when register them as global variable in the new thread.

which is the best way to go further?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.