On Thu, Feb 28, 2008 at 9:58 PM, Richard S. Crawford
<[EMAIL PROTECTED]> wrote:
> I'm trying to figure out a way to make sure an included PHP file has no syntax
>  errors before actually including it as a part of project. Is this even
>  possible?  I'm running into brick walls.

    As far as I know, the only way to do that is via the CLI (or
accessing the include file directly in the browser).

    Make sure that error_reporting is enabled and that it's set to
report E_ALL if you want to really be sure your code is clean (i.e. -
reporting unused, undefined, and uninstantiated variables, et cetera).

    Then, if done from a *nix command line, just type:
        php -l /path/to/include/file.php

-- 
</Dan>

Daniel P. Brown
Senior Unix Geek
<? while(1) { $me = $mind--; sleep(86400); } ?>

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

Reply via email to