Check a PHP File for Syntax Errors from the Command Line

I sometimes find myself having to create PHP scripts from scratch using Nano on a command line only interface on a Ubuntu Linux server. Obviously this kind of sucks if you are used to using a proper error-checking and code hinting full IDE like Aptana to help speed up your scripting, but hey, you can’t always have things your way.

Anyway, the point of this quickfire post is to remind you of PHP’s built in syntax checker that comes bundled in with the main PHP executable as a switch…

…namely the -l (lowercase ‘L’) switch.

Simply point the php -l command at the PHP file you wish to check for syntax errors (via a command prompt if you’re using Windows or a terminal if you’re partaking in the Linux experience) and the application will spit out a result for you, hopefully the much appreciated “No syntax errors detected in scriptname” success string.

A nice and simple way of ensuring that your PHP script at least passes all the compiler tests in terms of syntax and will actually run when executed. :)

Related Link: http://php.net/manual/en/features.commandline.php

Related Posts :

About Craig Lotter

Craig Lotter is an established web developer and application programmer, with strong creative urges (which keep bursting out at the most inopportune moments) and a seemingly insatiable need to love all things animated. Living in the beautiful coastal town of Gordon's Bay in South Africa, he games, develops, takes in animated fare, trains under the Funakoshi karate style and for the most part, simply enjoys life with his amazing wife and daughter. Oh, and he draws ever now and then too.
This entry was posted in Tutorials and tagged , , , , , . Bookmark the permalink.