Could someone refer me to an online PHP validator? It would be of much help. Thanks in advance!
|
To expand on my comment. You can validate on the command line using Here's an example of the output when run on a file containing:
Results in:
I suggested you build your own validator. A simple page that allows you to upload a php file. It takes the uploaded file runs it through Note: this is not a security risk it does not execute the file, just checks for syntax errors. Here's a really basic example of creating your own:
|
|||
|
|
I found this for online php validation:- http://www.icosaedro.it/phplint/phplint-on-line.html Hope this helps. |
|||
|
|
|
Here is a similar question to yours. (Practically the same.) What ways are there to validate PHP code? Edit The top answer there suggest this resource: http://www.meandeviation.com/tutorials/learnphp/php-syntax-check/v4/syntax-check.php |
|||
|
|
|
Here's one more for you that not only performs the php -l check for you, but also does some secondary analysis for mistakes that would not be considered invalid (e.g. declaring a variable with a double equal sign). |
|||
|
|
php -l [filename]to parse the php file, and not execute it. – Jacob Mar 11 '11 at 6:15