On 6/17/07, muquaddim <[EMAIL PROTECTED]> wrote:
If I get this I could have make a .NET wrapper.
You may also want to look at this:
http://netevil.org/blog/2004/jul/phpscript
source code:
http://cvs.php.net/viewvc.cgi/pecl/activescript/
--Wez.
--
PHP Internals - PHP Runtime Development M
On 6/17/07, muquaddim <[EMAIL PROTECTED]> wrote:
"Tijnema" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On 6/17/07, muquaddim <[EMAIL PROTECTED]> wrote:
>> Hi,
>> I have use dumpbin to get the method names of php5ts.dll file. I get many
>> names.
>> 2 of these methods are,
>> "p
"Tijnema" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On 6/17/07, muquaddim <[EMAIL PROTECTED]> wrote:
>> Hi,
>> I have use dumpbin to get the method names of php5ts.dll file. I get many
>> names.
>> 2 of these methods are,
>> "php_execute_script"
>> "php_execute_simple_script"
Hi muquaddim,
before calling these API functions you have to initialise some data
structures. The usual way to embed PHP into another environment is to
provide an SAPI module which wraps PHP's APIs to something you can use
from another system in a nice way.
See php-src/sapi/embed/ for a quite sim
On 6/17/07, muquaddim <[EMAIL PROTECTED]> wrote:
Hi,
I have use dumpbin to get the method names of php5ts.dll file. I get many
names.
2 of these methods are,
"php_execute_script"
"php_execute_simple_script"
I guess these are the methods that are responsible for executing php source
(.php) files.
Hi,
I have use dumpbin to get the method names of php5ts.dll file. I get many
names.
2 of these methods are,
"php_execute_script"
"php_execute_simple_script"
I guess these are the methods that are responsible for executing php source
(.php) files.
now I need to know, what are the parameter of th