Re: [PHP-DEV] variable declaration

2006-10-10 Thread Ilia Alshanetsky
On 10-Oct-06, at 3:51 PM, Alain Williams wrote: On Tue, Oct 10, 2006 at 02:59:45PM -0400, Ilia Alshanetsky wrote: If you want to emulate perl's "strict" mode just add an error_handler () that will catch E_NOTICE relating to undefined variable, constant, array key usage and convert them to fatal

Re: [PHP-DEV] variable declaration

2006-10-10 Thread Etienne Kneuss
Hi Variables' names are case-sensitive in PHP, $a = $A are two separate variables. How would you want to guess which one is right? -E Alain Williams a écrit : On Tue, Oct 10, 2006 at 02:59:45PM -0400, Ilia Alshanetsky wrote: If you want to emulate perl's "strict" mode just add an error_h

Re: [PHP-DEV] variable declaration

2006-10-10 Thread Alain Williams
On Tue, Oct 10, 2006 at 02:59:45PM -0400, Ilia Alshanetsky wrote: > If you want to emulate perl's "strict" mode just add an error_handler > () that will catch E_NOTICE relating to undefined variable, constant, > array key usage and convert them to fatal errors. No, it doesn't do the same thing,

Re: [PHP-DEV] variable declaration

2006-10-10 Thread Ilia Alshanetsky
If you want to emulate perl's "strict" mode just add an error_handler () that will catch E_NOTICE relating to undefined variable, constant, array key usage and convert them to fatal errors. On 10-Oct-06, at 2:52 PM, Alain Williams wrote: Hi, just trying to canvass support for the ability t