Man-wai Chang wrote:
> Is there a parameter in php.ini that requires all variables to be
> explicitly initialized, rather than being automatically assigned the
> value of false?

I think you'll find they get assigned the value of null, not false.

There is no setting that enforces such a requirement, but you can get
some of the way there by enabling the display of notices which will tell
you whenever a variable is used without being initialised.

-Stut

-- 
http://stut.net/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to