Re: [PHP-DEV] Protected static props redeclared as public share value across classes

2008-02-26 Thread Robin Fernandes
Hi Marcus, On 28/01/2008, Marcus Boerger <[EMAIL PROTECTED]> wrote: > > > > I checked it out in more detail and it is indeed broken as in it is not > > consistent If possible, I'd like to revive this discussion. Patch included. :) History: http://thread.gmane.org/gmane.comp.php.devel/47956/f

Re: [PHP-DEV] RFC: documentation collaboration toolchain

2008-02-26 Thread Lukas Kahwe Smith
On 25.02.2008, at 17:20, Stefan Marr wrote: Pierre Joye schrieb: Limiting the RFC to existing php.net's member sound like a bad idea and create CVS accounts only for a RFC does not sound any better. I would rather use the wiki for the complete process. Once a RFC reached a "stable" status, we

[PHP-DEV] PHP footprint and sharing code among SAPI binaries

2008-02-26 Thread Eugene San
Hi all, I want to raise a discussion on subject that is very important for PHP usage on Embedded platforms. I am myself working on projects where we use PHP to manage embedded devices. Everything was fine but lately the need to work from flash memory appeared. We discovered that PHP binar

Re: [PHP-DEV] PHP footprint and sharing code among SAPI binaries

2008-02-26 Thread Daniel Brown
On Tue, Feb 26, 2008 at 3:48 PM, Eugene San <[EMAIL PROTECTED]> wrote: > Hi all, > > > I want to raise a discussion on subject that is very important for PHP > usage on Embedded platforms. > > I am myself working on projects where we use PHP to manage embedded > devices. Everything was fine but

[PHP-DEV] Re: How to build a real Trait thing without exclusion and renaming

2008-02-26 Thread Joshua Thompson
Stefan Marr wrote: //Example from the RFC with the cross-over conflict to be solved trait A { public function smallTalk() { echo 'a'; } public function bigTalk() { echo 'A'; } } trait B { public function smallTalk() { echo 'b'; } public function bigTalk() { echo 'B