[PHP-DEV] PHP 4 Bug Summary Report

2006-12-04 Thread internals
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (626 total including feature requests) ===[*Regular Expressions]= 39723 Open eregi in difference query ===[Apache2

[PHP-DEV] PHP 5 Bug Summary Report

2006-12-04 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (647 total including feature requests) ===[*Compile Issues]== 39372 Suspended Incompatibility in the PHP API. 39591 Open ./configure flag failure

[PHP-DEV] Re: [PHP 4.4.5 / Apache 2.2.3] Abrupt and unrepeatable Segmentation fault (11)

2006-12-04 Thread Dmitry Dartz
Looks like an ipv6 issue. Did you try to re-compile without ipv6? Jan Schröter [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all! I'm having trouble with my server(s) for some weeks now and did not find any solution for now. My System is Opensuse 10.1 (32 bit) with Apache

[PHP-DEV] CVS Account Request: aiska

2006-12-04 Thread Aiska Hendra
Education -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: wormus

2006-12-04 Thread Aaron
commit to PEAR's Validate_Finance co-lead with Stefan Neufeind -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [PHP 4.4.5 / Apache 2.2.3] Abrupt and unrepeatable Segmentation fault (11)

2006-12-04 Thread Jan Schröter
Dmitry Dartz wrote: Looks like an ipv6 issue. Did you try to re-compile without ipv6? I already stumbled on this possible issue and recompiled my php without ipv6 support (--disable-ipv6). But it didn't work anyway. Here is my complete configure line: './configure' '--prefix=/usr/'

[PHP-DEV] Making a method called list or other language constructs names.

2006-12-04 Thread Urbanose
Hello there :] I wanted to build a method called list. The problem is that once I do that, I get a PHP Parse error: syntax error, unexpected T_LIST, expecting T_STRING error, because it's a language construct. Here's the code that leads me to this error : ?php class Foo { function

Re: [PHP-DEV] Making a method called list or other language constructs names.

2006-12-04 Thread Antony Dovgal
On 12/04/2006 05:22 PM, Urbanose wrote: And it works. So there's my question : why can't we make methods with the same name as those used by language constructs ? I don't see the point. http://www.php.net/manual/en/reserved.php The point is that these names are reserved by the parser and

[PHP-DEV] IDE for PHP development

2006-12-04 Thread Elliotte Harold
What IDEs are people using and prefer for PHP development? preferably on Linux or Mac OS X? I'm just starting to poke around in the internals, and it would be very helpful to have something that let me jump to definitions. e.g. when I see a macro named RETURN_TRUE in an apparently void method,

Re: [PHP-DEV] IDE for PHP development

2006-12-04 Thread Antony Dovgal
On 12/04/2006 05:48 PM, Elliotte Harold wrote: What IDEs are people using and prefer for PHP development? preferably on Linux or Mac OS X? I'm just starting to poke around in the internals, and it would be very helpful to have something that let me jump to definitions. e.g. when I see a macro

Re: [PHP-DEV] IDE for PHP development

2006-12-04 Thread Arnold Daniels
Hi, There is a great tutorial on zend devzone. It's split in 3 (or actualy 4) parts: http://devzone.zend.com/node/view/id/1021 - Part I: Introduction to PHP and Zend http://devzone.zend.com/node/view/id/1022 - Part II: Parameters, Arrays, and ZVALs http://devzone.zend.com/node/view/id/1023

Re: [PHP-DEV] Temporarily overriding memory limit in extension

2006-12-04 Thread Bruce Bailey
Richard Thanks very much for your replies -- I need all the help I can get :) In any case, I was under the impression from the php.ini setting 'session.gc_probability' that script memory was not necessarily freed when the script ends. Is this not correct? Bruce From: Richard Lynch

[PHP-DEV] sapi reference api documentation ? how to externalise sapi as dyn dso like a php module ?

2006-12-04 Thread Mathieu CARBONNEAUX
Hi all, have two question! the first is where i can find documentation (other than the php source...!) about developping new sapi? if exist !? and for the seconds, have seen in differente sapi source that work like apache module and php module, with a struct who point to differente handler

Re: [PHP-DEV] Function call speedup (CV applied to functions)

2006-12-04 Thread Ilia Alshanetsky
On 4-Dec-06, at 11:40 AM, Sara Golemon wrote: Looks fairly interesting, I doubt 18% is consistent benefit across the board I doubt it very much too. While I made that test to strip out non- fcall overhead, I also made it favor the effect being produced by constantly calling the same

Re: [PHP-DEV] Temporarily overriding memory limit in extension

2006-12-04 Thread Stanislav Malyshev
In any case, I was under the impression from the php.ini setting 'session.gc_probability' that script memory was not necessarily freed when the script ends. Is this not correct? session garbage collection does not refer to script memory, it refers to the session data stored in persistent

Re: [PHP-DEV] make test flag?

2006-12-04 Thread Marcus Boerger
Hello Luca, we cannot do that. This patchwould prevent loading of any shared extension. And we decided against using dl() in the test scripts some years ago. The only thing we can do here is having a new make thing that does pass -n to the test script. Once again, we test what you will be

[PHP-DEV] destruction of cross-referenced objects

2006-12-04 Thread Arnold Daniels
Hi, I'm struggling with the problem that cross-referenced objects don't get destroyed. I can off course write a method to break the cross-reference, but that's kind of a pain in the butt, especially if the cross-reference is not strait forward. To solve this I'm thinking of building one of