The php script is
<?php
$testing;
echo "is null? " .is_null($testing);
echo "<br/>";
$testing = 5;
echo "is integer? " .is_int($testing);
?>
the output I get is
Notice: Undefined variable: testing in /Library/WebServer/Documents/test.php on line 3
is null? 1
is integer? 1
I understand that $testing is undefined when used in line 3, but why is it telling me..?
OS X 10.5.5
PHP 5.2.6