[snip]
'use strict;' directive
[/snip]

One thing you can do is 

error_reporting(E_ALL); 

(see http://www.php.net/errorfunc )

but there is nothing really that operates the way 'use strict' does.
However, if you have an undefined variable this will give it back to you
if it does not contain a value (say you have a variable named $vdog and
you mis-typed it as $vgod). You may also want to consider 'define' at
http://www.php.net/define....but again, it is not the same as 'use
strict'.

HTH!

Jay



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

Reply via email to