其實也可以檢查其他語言的語法錯誤,把代碼內(nèi)的php -l 換了就行
成都創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司,專注
成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)、網(wǎng)站營銷推廣,國際域名空間,網(wǎng)絡(luò)空間,網(wǎng)站托管維護有關(guān)企業(yè)網(wǎng)站制作方案、改版、費用等問題,請聯(lián)系
成都創(chuàng)新互聯(lián)。#! /bin/bash
#
# check_php_syntax.sh
# Copyright (C) 2014
#
# Distributed under terms of the MIT license.
#
#!/bin/bash
# check php syntax
if [ $# -lt 1 ];then
echo 'Usage: ' $0 'directory';
exit
fi
if [ ! -d $1 ];then
echo $1 'not a directory,please check!';
exit
fi
directory=$1
echo $directory
temp_file="/tmp/file$$"
echo $temp_file
ls -R $directory | awk '
BEGIN{
FS="n"
folder="'$directory'"
logname="'$temp_file'"
temp=""
}
{
if($0~/.php$/){
system("php -l " folder "/" $0 " >> " logname " 2>&1")
}
if($0~/:$/){
temp=substr($0,1,length($0)-1)
folder=temp
}
}
'
#folder=substr($1,1,length($1)-1)
if [ -e $temp_file ];then
cat $temp_file | awk '
BEGIN{
error = 0
}
{
if($0~/Parse/) {
error++
errorfile[$0] = $0
}
}
END{
print "錯誤文件:" error "個"
if(length(errorfile)>0) print "錯誤行數(shù):"
for (i in errorfile)
print i
}
'
else
echo "php file not found."
exit;
fi
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
分享標(biāo)題:檢查整個目錄php語法錯誤腳本-創(chuàng)新互聯(lián)
本文URL:
http://weahome.cn/article/ehepd.html