[PHP-DEV] documentation of php5ts.dll and .NET wrapper

2007-06-17 Thread muquaddim
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

Re: [PHP-DEV] documentation of php5ts.dll and .NET wrapper

2007-06-17 Thread Tijnema
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.

Re: [PHP-DEV] documentation of php5ts.dll and .NET wrapper

2007-06-17 Thread Johannes Schlüter
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

Re: [PHP-DEV] documentation of php5ts.dll and .NET wrapper

2007-06-17 Thread muquaddim
"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"

Re: [PHP-DEV] documentation of php5ts.dll and .NET wrapper

2007-06-17 Thread Tijnema
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

Re: [PHP-DEV] documentation of php5ts.dll and .NET wrapper

2007-06-17 Thread Wez Furlong
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