mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
16 lines
661 B
Bash
Executable File
16 lines
661 B
Bash
Executable File
#!/bin/bash
|
|
################################################################################
|
|
### Tool to check for PHP Syntax errors
|
|
### Usage: doc/php_syntax_check [file or directory, defaults to whole egrouware]
|
|
### Will output all PHP Fatal, Parse erros and also Deprecated incl. filename
|
|
### Exit-status: 0 on no error, but maybe Deprecated warnings, 1 on error
|
|
################################################################################
|
|
|
|
cd `dirname $0`
|
|
cd ..
|
|
|
|
find ${@-.} -name '*.php' -exec php -l {} \; 2>&1 | \
|
|
#grep -v 'No syntax errors detected in' | \
|
|
grep '^PHP' | \
|
|
perl -pe 'END { exit $status } $status=1 if /^PHP (Fatal|Parse error)/;'
|