Sublime Text 3配置php語法錯誤提示插件PHPCS (windows7環境)

第一步:下載php code sniffer插件安裝包  地址 https://github.com/benmatselby/sublime-phpcs;php

解壓安裝包獲得sublime-phpcs-master,把sublime-phpcs-master文件夾放到sublime安裝目錄下的Data/Packages/目錄下;重啓sublime, 打開Sublime Text 3->Preferences->Package Settings -> Php Code Sniffer 證實插件安裝成功;html

第二步:下載php-cs-fixer.phar 地址 http://cs.sensiolabs.org/get/php-cs-fixer.phar   ;linux

第三步:把php-cs-fixer.phar 放到你的 php.exe 安裝目錄 (例如(mine is C:/WAMP/php/php.exe));git

第四步:下載 http://download.pear.php.net/package/PHP_CodeSniffer-1.5.0RC4.tgz,解壓,而後找到scripts目錄下的phpcs.bat,放到php.exe 安裝目錄;github

第五步:解壓打開 第一步下載的php code sniffer安裝包,在子文件example-settings下有個文件shell

windows-7-phpcs-fixer-linter.example 就是Sublime Text 3 在windows7配置 PHPCS 的樣例,還有一個nix-all-commands.example是在linux/unix環境下的配置樣例windows


第六步:如下就是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路徑ui

設置都改爲你本地環境下的php安裝路徑,保存,重啓Sublime Text 3spa

{

// 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": {}
}

重啓Sublime Text 3,打開php程序,語法錯誤提示以下圖:.net

其實我一直用Zend Studio,感受Sublime Text 3挺好的,小巧,插件多,沒錯誤提示不爽就找了找怎麼裝插件。把安裝過程寫下來了,感謝http://www.cnblogs.com/meetrice/p/3731635.html這篇博客的指導

相關文章
相關標籤/搜索