[PHP-DEV] Re: Creating a class in a php extension

2007-06-19 Thread muquaddim
I think you have to buy the Sara's Book Very good book. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

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

2007-06-19 Thread muquaddim
So I have to write my own Sapi module in PHP way :-( It looks like too tough for me. And its the right way. My intention is to implement a simple funcion int execute(char *filename); //filename is a php file For I have to write a sapi module. No matter I'll at least try it. Now the big question.

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

2007-06-18 Thread muquaddim
I think the configure option "--disable-zts" will work on the following lines. #ifdef ZTS #define TSRMLS_D void ***tsrm_ls #define TSRMLS_DC , TSRMLS_D #define TSRMLS_C tsrm_ls #define TSRMLS_CC , TSRMLS_C #else #define TSRMLS_D #define TSRMLS_DC #define TSRMLS_C #define TSRMLS_CC In that case m

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-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