[PHP-DEV] Re: E_STRICT

2006-07-21 Thread Lukas Smith
Lukas Smith wrote: Lukas Smith wrote: Ok I see 2 options: 1) Obviously one solution would be to disallow making anything an E_STRICT notice that is not available since the first release of the given major version. Pierre and Anthony seem to favor this solution. So it sounds like Derick is

Re: [PHP-DEV] Re: E_STRICT

2006-07-19 Thread Derick Rethans
On Thu, 13 Jul 2006, Lukas Smith wrote: > Lukas Smith wrote: > > Ok I see 2 options: > > 1) > > Obviously one solution would be to disallow making anything an E_STRICT > > notice that is not available since the first release of the given major > > version. > > Pierre and Anthony seem to favor t

[PHP-DEV] Re: E_STRICT

2006-07-12 Thread Lukas Smith
Lukas Smith wrote: Ok I see 2 options: 1) Obviously one solution would be to disallow making anything an E_STRICT notice that is not available since the first release of the given major version. Pierre and Anthony seem to favor this solution. 2) Adding such a filter API into PHP internals h

[PHP-DEV] Re: E_STRICT

2003-11-21 Thread Sara Golemon
> I added an E_STRICT error level today which purists can use to make sure > that there scripts are using the latest and greatest suggested method of > coding (according to what we decide). > Ideas are things like: > a) Not using var for member variables but moving to PPP. > b) Not using is_a but u

RE: [PHP-DEV] Re: E_STRICT

2003-11-19 Thread Andi Gutmans
At 11:07 AM 11/19/2003 +, Ford, Mike [LSS] wrote: On 19 November 2003 06:12, Andi Gutmans contributed these pearls of wisdom: > Just a warning. > I commited your patch. Not sure about the naming but it's the > status quo for now :) > Andi > >> + case E_STRIC

RE: [PHP-DEV] Re: E_STRICT

2003-11-19 Thread Ford, Mike [LSS]
On 19 November 2003 06:12, Andi Gutmans contributed these pearls of wisdom: > Just a warning. > I commited your patch. Not sure about the naming but it's the > status quo for now :) > Andi > >> + case E_STRICT: >> + error_type_str = "Strict >> S

Re: [PHP-DEV] Re: E_STRICT

2003-11-18 Thread Andi Gutmans
Just a warning. I commited your patch. Not sure about the naming but it's the status quo for now :) Andi At 09:20 PM 11/18/2003 -0800, Sara Golemon wrote: > I added an E_STRICT error level today which purists can use to make sure > that there scripts are using the latest and greatest suggested me

[PHP-DEV] Re: E_STRICT

2003-11-18 Thread Sara Golemon
> I added an E_STRICT error level today which purists can use to make sure > that there scripts are using the latest and greatest suggested method of > coding (according to what we decide). > Should E_STRICT halt execution (as with E_ERROR) or simply state a warning (as with E_NOTICE / E_WARNING)?