-
-
Save mathiasverraes/3096500 to your computer and use it in GitHub Desktop.
#!/bin/bash | |
for file in `find .` | |
do | |
EXTENSION="${file##*.}" | |
if [ "$EXTENSION" == "php" ] || [ "$EXTENSION" == "phtml" ] | |
then | |
RESULTS=`php -l $file` | |
if [ "$RESULTS" != "No syntax errors detected in $file" ] | |
then | |
echo $RESULTS | |
fi | |
fi | |
done |
#!/usr/bin/env bash
# trace ERR through pipes
set -o pipefail
# trace ERR through 'time command' and other functions
set -o errtrace
# set -u : exit the script if you try to use an uninitialised variable
set -o nounset
# set -e : exit the script if any statement returns a non-true return value
set -o errexit
ST_OK=0
ST_ERR=1
ST_HLP=2
PURPLE="\033[0;35m"
GREEN="\033[0;32m"
YELLOW="\033[1;33m"
NC="\033[0m"
PHP_MAJOR="$(php -v | head -n 1 | awk '{print $2}' | cut -d '.' -f 1,2)"
PHP_FULL_VERSION=`php -r 'echo phpversion();'`
printf "${GREEN}Recursive PHP syntax check${NC} (lint)\n"
print_help() {
printf "\n${YELLOW}Usage:${NC} $0 [command]\n"
printf "\n -H | --help ${PURPLE}Show this help message.${NC}"
printf "\n -L | --lint ${PURPLE}Recursive PHP syntax check (lint).${NC}"
printf "\n\n"
}
start_lint() {
if [ $# -lt 2 ]; then
printf "\n${YELLOW}Using syntax checker:${NC}\n"
printf "\n $0 --lint ${PURPLE}\$(pwd)/relative/path/to/the/files${NC}"
printf "\n $0 --lint ${PURPLE}/absolute/path/to/the/files${NC}"
printf "\n\n"
exit ${ST_HLP}
fi
declare PATH_TO_SCAN=$2
declare ERROR=0
if [ ! -d ${PATH_TO_SCAN} ] && [ ! -f ${PATH_TO_SCAN} ]; then
printf "\nInvalid directory or file: ${PATH_TO_SCAN}"
printf "\n\n"
exit ${ST_ERR}
fi
printf "\nPHP version: ${YELLOW}${PHP_MAJOR}${NC} (${PHP_FULL_VERSION})"
printf "\nPath to scan: ${YELLOW}${PATH_TO_SCAN}${NC}"
printf "\n\n"
for file in `find ${PATH_TO_SCAN} -type f -name "*.php"`; do
RESULTS=`php -l ${file}`
if [ "$RESULTS" != "No syntax errors detected in $file" ]; then
ERROR=1
fi
done
if [ "${ERROR}" = 1 ] ; then
exit ${ST_ERR}
else
exit ${ST_OK}
fi
printf "\n"
}
[[ $# == 0 || $1 == --help ]] && print_help && exit ${ST_HLP}
while test -n "$1"; do
case $1 in
--help|-H)
print_help
exit ${ST_HLP}
;;
--lint|-L)
start_lint ${@}
exit ${ST_OK}
;;
*)
print_help
exit ${ST_HLP}
;;
esac
done
Maybe this:
find . -type f -name '*.php' -exec php -l {} ; |grep -v "No syntax errors detected"
;)
fixed this to:
find . -type f -name '*.php' -exec php -l {} \; |grep -v "No syntax errors detected"
You may want to invert the return code of grep so a CI build can fail, if grep found some errors:
find . -type f -name '*.php' -exec php -l {} \; | (! grep -v "No syntax errors detected" )
you can run it in parallel (using xargs -P
) and disable loading of the php config (with -n
) for a significant speed bump like this:
find . -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )
@fbrinker and @jakob-stoeck, thanks for that, that's exactly what I was looking for!
with vendor folder excluded for ci/cd
find . -path ./app/vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )
Thanks @JoSSte
Maybe this:
find . -type f -name '*.php' -exec php -l {} ; |grep -v "No syntax errors detected"
;)
Just redirect stdout
to /dev/null
then all you will see are the errors. There is then no need to grep stdout
.
find . -type f -name '*.php' -exec php -l {} \; >/dev/null
Something like this would be pretty useful as a GitHub Action, I reckon.
I combined and added some parts:
- @judgej redirect to /dev/null
- Add
-false
after-prune
to omit thevendor
folder from output - Add
$(nproc)
to get the actual amount of usable cores
find . -path ./vendor -prune -false -o -type f -name '*.php' -print0 | xargs -0 -n1 -P$(nproc) php -l -n > /dev/null
Edit: Portable version with comment from @CodeBrauer:
find . -path ./vendor -prune -false -o -type f -name '*.php' -print0 | xargs -0 -n1 -P$(nproc 2> /dev/null || sysctl -n hw.ncpu) php -l -n > /dev/null
I ❤️ this discussion! You people are awesome!
- Add
$(nproc)
to get the actual amount of usable cores
For those using macOS - nproc
is not available, but you can use sysctl -n hw.ncpu
still havent found a good (portable) version for this
redirecting the output of php -l to /dev/null also hides the parse/syntax error messages
#!/bin/sh
set -ex
find . -type f -name '*.php' ! -path './vendor/*' -exec php -l -n {} \; | (! grep -v "No syntax errors detected" )
echo 'syntax OK'
This works fine on ubuntu, but on macOS it stops the script
@canadiannomad You can't use exit status with that. I personally altered the code above to be:
Usage:
phplint.sh path/to/directory/ path/to/file.php
Benefits:
NOTE: I don't care about .phtml files but that can be altered.