>Perhaps detecting
>if a variable has not been initialized within the code

This is an E_NOTICE level error.

<?php
error_reporting(E_ALL);
$foo++;
?>

[EMAIL PROTECTED] ~ $ php test.php
Notice: Undefined variable: foo in /home/mario/test.php on line 3

Reply via email to