[PHP-DEV] PHP 4 Bug Summary Report

2005-02-21 Thread internals
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (783 total including feature requests) ===[*Compile Issues]== 28496 Feedback Fatal Error in the make install caused by broken egrep ==

[PHP-DEV] PHP 5 Bug Summary Report

2005-02-21 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (443 total including feature requests) ===[*Calendar problems]=== 32015 Feedback StrtoTime Function Giving Different Timestamps in different versions ===

Re: [PHP-DEV] function proposal - php_check_syntax_string

2005-02-21 Thread Frédéric LECOINTRE
Hello Marcus, | have you experimented with php_check_syntax() and temporairy streams? tell me if i'm wrong. I think it could be possible to use php_lint_script and do compiler read variable instead of file - set zend_file_handle->type = ZEND_HANDLE_STREAM - define two functions for reader and clo

[PHP-DEV] segmentation fault when passing arguments by reference or importing global variables

2005-02-21 Thread Martin Sarsale
Dear All: Im having some weird problems here. We're working on a big project, based on PHP and we found that some code that used to work, is doing very strange things. Im getting segfaults in some parts of the code, for example: function XXX(&$databaseConnection, $xxx) { or global $xxx; At first

Re: [PHP-DEV] segmentation fault when passing arguments by reference or importing global variables

2005-02-21 Thread Derick Rethans
On Mon, 21 Feb 2005, Martin Sarsale wrote: > Im having some weird problems here. We're working on a big project, > based on PHP and we found that some code that used to work, is doing > very strange things. I've been noticing the same things, and still trying to figure out where it happens. It ha

Re: [PHP-DEV] segmentation fault when passing arguments by reference or importing global variables

2005-02-21 Thread Martin Sarsale
Derick Rethans wrote: I've been noticing the same things, and still trying to figure out where it happens. It has most likely to do with returning-by-reference in the wrong places. What do you mean with returning by reference in the wrong places? could you give me an example? -- No virus found in

Re: [PHP-DEV] function proposal - php_check_syntax_string

2005-02-21 Thread Marcus Boerger
Hello Frédéric, Monday, February 21, 2005, 1:56:01 PM, you wrote: > Hello Marcus, > | have you experimented with php_check_syntax() and temporairy streams? > tell me if i'm wrong. > I think it could be possible to use php_lint_script and do compiler read > variable instead of file > - set zend_

Re: [PHP-DEV] segmentation fault when passing arguments by reference or importing global variables

2005-02-21 Thread Michael Walter
I've as well experienced this problem several times (in a medium-size code base). By returning-by-reference in the wrong places, do you mean something like function foo() { return 10;} $bar=&foo(); I'm pretty convinced that even with "correct" (in that respect) code the crash still occurs. Mi

Re: [PHP-DEV] segmentation fault when passing arguments by reference or importing global variables

2005-02-21 Thread Todd Ruth
Ahh... my favorite topic. I think I covered all the cases our company has hit in the following message to this list: http://marc.theaimsgroup.com/?l=php-dev&m=109631219107237&w=2 I've never seen a response as to whether there is hope for fixes of these problems. I ended up hacking at an already

[PHP-DEV] Writing an Extension

2005-02-21 Thread Arjun Jain
Hello everyone, I am not sure if this is the right place to ask this but let me anyways. We need to write a PHP extension for the PI API (http://www.picorp.com). I have been googling and reding up stuff over the net for the last 3 days but alas not to much help. Other than ext_skel and PECL_Gen, ar