Re: [PHP] Code Optimizer

2001-02-16 Thread Michael Stearne
You can set your error reporting in your php.ini file or set error_reporting() in your scripts to be very sensitive where it will tell you such things as variables that weren't defined properly. Look into http://www.php.net/manual/en/features.error-handling.php Michael Joe Sheble aka Wizaerd w

Re: [PHP] Code Optimizer

2001-02-15 Thread Richard Lynch
> Is there anything that evaluates PHP code and checks for optimization? Not > like the Zend Optimizer, but one that checks for things such as variables > that were defined but never used, repeated variables, unnecessary > statements or constructs? Basically a code cleaner such as C, C++, Java, >