Pretty straight forward question. I'm quite happy with my simple text editor but sometimes it'd be nice to run something like PyFlakes on my code before running to check for any obvious errors like undeclared variables or syntax errors.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

just run

 php -l filename

:)

duplicate of http://stackoverflow.com/questions/378959/is-there-a-static-code-analyzer-like-lint-for-php-files

link|improve this answer
Wow, cool! Thanks. – pr1001 Oct 24 '10 at 16:35
feedback

The previous answer is wrong - the question is neither a duplicated nor does the given command do what "pyflakes" does.

"pyflakes" is a python project that integrates with Vim, and allows you to check for interpreter errors in your python code live (as you are coding).

However, i am not aware of any existing vim extension which replicates the functionality of pyflakes for PHP code.

link|improve this answer
Umm, Orbit gave me just the answer I was looking for, so, no, I wouldn't say it's wrong. I was not asking about the specific vim plugin – I actually use the command line version. – pr1001 Apr 19 '11 at 8:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.