![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archiveRe: Is there a setting or program for doing strict checking in PHP compilation?
From: cyberhorse <cyberhorse@gmail.com>
Date: Wed Jul 20 2005 - 12:13:48 CEST
At the beginning of your code, do this:
error_reporting(E_ALL);
when you check if a variable is false, rather than empty, to this:
if (flag === false)
if you want to check if something is storing an integer, you can do
for the $ - your editor should help you identify these. I would
|