[PHP-DEV] Beta 4 RC 1

2004-02-12 Thread Andi Gutmans
Hey guys, I rolled a preliminary beta 4 package just to make sure nothing is seriously broken. You can still commit fixes in the next few hours and if I don't hear of any serious show stoppers, I'll re-bundle and release beta 4 later today. You can download it from:

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Stig S. Bakken
On Wed, 2004-02-11 at 17:42, Stanislav Malyshev wrote: SC 2. php's dl implementation is broken by design, it should never unload a SC dl. not only is that a performance issue, but it requires all kinds of SC code to verify that the dl CAN be unloaded properly, thus the problem SC with dl

Re: [PHP-DEV] Beta 4 RC 1

2004-02-12 Thread Jan Lehnardt
nevermind, sorry. Jan -- -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Stanislav Malyshev
SSB Convenience, modularity, ease of administration (or lack thereof for SSB people using shared hosting environments). With dl() you can SSB install an extension from PECL and use it immediately even in a SSB shared hosting environment. If I hosted by stuff in such an If you are managing

[PHP-DEV] Re: [PHP-QA] Beta 4 RC 1

2004-02-12 Thread Jan Lehnardt
Hi again :) On 12 Feb 2004, at 10:36, Andi Gutmans wrote: I rolled a preliminary beta 4 package just to make sure nothing is seriously broken. You can still commit fixes in the next few hours and if I don't hear of any serious show stoppers, I'll re-bundle and release beta 4 later today.

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Stanislav Malyshev
PJ Indeed, compare apples and peanuts, all good ;). What's about the per PJ host module? I think it's a valid concern, but using dl() for it is not good, at least in its present form. By the way, how exactly do you plan to use dl() for that? Making auto_prepend that dl()'s it, or what? How

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Pierre-Alain Joye
On Thu, 12 Feb 2004 13:05:38 +0200 (IST) Stanislav Malyshev [EMAIL PROTECTED] wrote: PJ Indeed, compare apples and peanuts, all good ;). What's about the PJper host module? I think it's a valid concern, but using dl() for it is not good, at least in its present form. By the way, how

[PHP-DEV] Re: Beta 4 RC 1

2004-02-12 Thread Stephane Drouard
== Quote from Andi Gutmans ([EMAIL PROTECTED])'s article I rolled a preliminary beta 4 package just to make sure nothing is seriously broken. You can still commit fixes in the next few hours and if I don't hear of any serious show stoppers, I'll re-bundle and release beta 4 later today. Andi,

Re: [PHP-DEV] Re: Beta 4 RC 1

2004-02-12 Thread Andi Gutmans
At 02:33 PM 2/12/2004 +, Stephane Drouard wrote: == Quote from Andi Gutmans ([EMAIL PROTECTED])'s article I rolled a preliminary beta 4 package just to make sure nothing is seriously broken. You can still commit fixes in the next few hours and if I don't hear of any serious show stoppers,

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Stig S. Bakken
On Thu, 2004-02-12 at 11:00, Stanislav Malyshev wrote: SSB Convenience, modularity, ease of administration (or lack thereof for SSB people using shared hosting environments). With dl() you can SSB install an extension from PECL and use it immediately even in a SSB shared hosting environment.

[PHP-DEV] Static class variables and $this

2004-02-12 Thread zhundiak
Can someone point me to some more information on using PHP 5's static class variables? All I have been able to find is the zend php5 changes page. Consider: error_reporting(E_ALL | E_STRICT); class foo { static $cnt = 0; function getCnt1() { return $this-cnt; } // Does not work, undefined

Re: [PHP-DEV] Static class variables and $this

2004-02-12 Thread Andi Gutmans
Use self::$cnt but internals@ is not meant for PHP questions but for discussing development of PHP. Andi At 07:48 PM 2/12/2004 +, [EMAIL PROTECTED] wrote: Can someone point me to some more information on using PHP 5's static class variables? All I have been able to find is the zend php5

[PHP-DEV] Re: [PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2004-02-12 Thread Andrei Zmievski
On Wed, 11 Feb 2004, Zeev Suraski wrote: zeev Wed Feb 11 14:15:34 2004 EDT Modified files: /php-src/ext/simplexmlsimplexml.c Log: Prevent SimpleXML from silently modifying types of variables that are assigned to its objects. Implementation

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Andrei Zmievski
On Wed, 11 Feb 2004, Derick Rethans wrote: 2. for PHP GTK you usually don't want the extension=php_gtk.so line as it inteferes with normal operation. How does it interfere with normal operation? - Andrei -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

[PHP-DEV] CVS Account Request: jstump

2004-02-12 Thread Joe Stump
I'm currently working on PEAR's Payment_Process gateway with Ian Eure and would like CVS access for that package so that I can commit code without having to bother Ian all the time with patches and new files. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Andrei Zmievski
On Wed, 11 Feb 2004, Shane Caraveo wrote: 1. languages have dynamicaly loadable binary extensions (only second rate ones do not) 2. php's dl implementation is broken by design, it should never unload a dl. not only is that a performance issue, but it requires all kinds of code to verify

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Andrei Zmievski
On Wed, 11 Feb 2004, Zeev Suraski wrote: By the way - dl() is trivial to implement if we were to go down your path, and make dl()'s persist forever. However, that's exactly where the problem is coming from - it completely doesn't fit the theme of PHP (not to mention the security and

[PHP-DEV] Bug #26665

2004-02-12 Thread Brian Moon
Can one of the core guys have a look at http://bugs.php.net/bug.php?id=26665. This is an easily reproducable error for me. We have worked around it for now, but I am a little uneasy that it is out there. Thanks, -- Brian Moon, dealnews.com, Inc. dealnews.com News on computer hardware

Re: [PHP-DEV] Fwd: Re: dl() problem

2004-02-12 Thread Andi Gutmans
At 12:50 PM 2/12/2004 -0800, Andrei Zmievski wrote: On Wed, 11 Feb 2004, Zeev Suraski wrote: By the way - dl() is trivial to implement if we were to go down your path, and make dl()'s persist forever. However, that's exactly where the problem is coming from - it completely doesn't fit the

Re: [PHP-DEV] Bug #26665

2004-02-12 Thread Derick Rethans
On Thu, 12 Feb 2004, Brian Moon wrote: Can one of the core guys have a look at http://bugs.php.net/bug.php?id=26665. This is an easily reproducable error for me. We have worked around it for now, but I am a little uneasy that it is out there. That one is set to Won't fix due to limitations

Re: [PHP-DEV] Bug #26665

2004-02-12 Thread Brian Moon
That one is set to Won't fix due to limitations in PHP 4 and it's fixed in PHP 5. Hmmm, then why can I use multiple files to create the array? PHP only crashes if I use a single file to create the array. -- Brian Moon, dealnews.com, Inc. dealnews.com News on computer hardware bargains

Re: [PHP-DEV] Bug #26665

2004-02-12 Thread George Schlossnagle
On Feb 12, 2004, at 4:10 PM, Brian Moon wrote: That one is set to Won't fix due to limitations in PHP 4 and it's fixed in PHP 5. Hmmm, then why can I use multiple files to create the array? PHP only crashes if I use a single file to create the array. Without looking too deeply it looks like a

Re: [PHP-DEV] Bug #26665

2004-02-12 Thread Brian Moon
That one is set to Won't fix due to limitations in PHP 4 and it's fixed in PHP 5. I apologize for not seeing this bug as Won't Fix already. I am not getting my [EMAIL PROTECTED] email for some reason. Who do I need to contact about that address? I thought it was odd I did not get any updates