Skip to content

Instantly share code, notes, and snippets.

@playmono
Last active March 26, 2018 13:44
Show Gist options
  • Save playmono/1b164b6ea496cb5193f22414d513a458 to your computer and use it in GitHub Desktop.
Save playmono/1b164b6ea496cb5193f22414d513a458 to your computer and use it in GitHub Desktop.
php -l function for entire directory
phpl() {
parameters=${@}
find $parameters -type f -name '*.php' -exec php -l {} \; | (! grep -v "No syntax errors detected" )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment