0
我想運行嚴格的語法檢查: 如何在Travis CI中語法檢查php文件?
$ php -d error_reporting=32767 -l test.php
我特拉維斯CI項目中的所有PHP文件。
我試圖用找到,但它始終只是返回0,即使對於exec標誌的命令失敗
$ find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \;
PHP Parse error: syntax error, unexpected end of file, expecting ',' or ';' in ./test.php on line 3
$ echo $?
0