add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

32
pages.zh/common/psalm.md Normal file
View File

@@ -0,0 +1,32 @@
# psalm
> 一个用于查找 PHP 应用程序错误的静态分析工具。
> 更多信息:<https://psalm.dev>。
- 生成一个 Psalm 配置:
`psalm --init`
- 分析当前工作目录:
`psalm`
- 分析特定目录或文件:
`psalm {{path/to/file_or_directory}}`
- 使用特定配置文件分析项目:
`psalm --config {{path/to/psalm.xml}}`
- 在输出中包含信息性发现:
`psalm --show-info`
- 分析一个项目并显示统计信息:
`psalm --stats`
- 使用 4 个线程并行分析一个项目:
`psalm --threads {{4}}`