明凯博客

关注网站技术,一个特立独行的程序员

Windows下Sublime Text 3配置php语法错误提示插件PHPCS

第一步:

下载php code sniffer插件安装包 地址 https://github.com/benmatselby/sublime-phpcs;
解压安装包得到sublime-phpcs-master,把sublime-phpcs-master文件夹放到sublime安装目录下的Data/Packages/目录下;
重启sublime, 打开Sublime Text 3->Preferences->Package Settings -> Php Code Sniffer 证明插件安装成功;

第二步:

下载php-cs-fixer.phar 地址 http://cs.sensiolabs.org/ ;

第三步:

把php-cs-fixer.phar 放到你的 php.exe 安装目录 (例如E:/WAMP/php/php.exe);

第四步:

下载 http://download.pear.php.net/package/PHP_CodeSniffer-1.5.0RC4.tgz

解压,然后找到scripts目录下的phpcs.bat,放到php.exe 安装目录;

第五步:

解压打开 第一步下载的php code sniffer安装包,在子文件example-settings下有个文件

windows-7-phpcs-fixer-linter.example 就是Sublime Text 3 在windows7配置 PHPCS 的样例,还有一个nix-all-commands.example是在linux/unix环境下的配置样例

第六步:

以下就是windows-7-phpcs-fixer-linter.example的配置内容,
打开你的Sublime Text 3->Preferences->Package Settings -> Php Code Sniffer -> Settings – User ,复制 windows-7-phpcs-fixer-linter.example 的内容到配置文件phpcs.sublime-settings,
然后修改对应的php.exe路径

设置都改成你本地环境下的php安装路径,保存,重启Sublime Text 3

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{  
 
// Path to php on windows installation  
// This is needed as we cannot run phars on windows, so we run it through php  
"phpcs_php_prefix_path": "C:\\wamp\\bin\\php\\php5.4.12\\php.exe",  
 
// This is the path to the bat file when we installed PHP_CodeSniffer  
"phpcs_executable_path": "C:\\wamp\\bin\\php\\php5.4.12\\phpcs.bat",  
 
// PHP-CS-Fixer settings  
// Don't want to auto fix issue with php-cs-fixer  
"php_cs_fixer_on_save": false,  
 
// Show the quick panel  
"php_cs_fixer_show_quick_panel": true,  
 
// The fixer phar file is stored here:  
"php_cs_fixer_executable_path": "C:\\wamp\\bin\\php\\php5.4.12\\php-cs-fixer.phar",  
 
// PHP Linter settings  
// Yes, lets lint the files  
"phpcs_linter_run": true,  
 
// And execute that on each file when saved (php only as per extensions_to_execute)  
"phpcs_linter_command_on_save": true,  
 
// Path to php  
"phpcs_php_path": "C:\\wamp\\bin\\php\\php5.4.12\\php.exe",  
 
// This is the regex format of the errors  
"phpcs_linter_regex": "(?P<message>.*) on line (?P<line>\\d+)",  
 
 
// PHP Mess Detector settings  
// Not turning on the mess detector here  
"phpmd_run": false,  
"phpmd_command_on_save": false,  
"phpmd_executable_path": "",  
"phpmd_additional_args": {}  
}  
</line></message>

重启Sublime Text 3,打开php程序,语法错误提示如下图:

20150323102445330

, ,

相关文章

2 条评论 “Windows下Sublime Text 3配置php语法错误提示插件PHPCS

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注