75 Star 126 Fork 69

快乐源泉/tpcms

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
check_syntax.sh 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenli 提交于 2024-07-31 17:45 . tpcms 升级,基于ThinkPHP6开发
#!/bin/bash
# 找到所有 PHP 文件
files=$(find . -name "*.php" -not -path "./vendor/*")
# 初始化错误计数器
error_count=0
for file in $files; do
# 检查语法
php -l "$file" > /dev/null
if [ $? != 0 ]; then
echo "Syntax error in file: $file"
error_count=$((error_count + 1))
fi
done
if [ $error_count -ne 0 ]; then
echo "$error_count syntax errors detected."
exit 1
else
echo "No syntax errors detected."
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/happy_source/tpcms.git
git@gitee.com:happy_source/tpcms.git
happy_source
tpcms
tpcms
master

搜索帮助