您好,登錄后才能下訂單哦!
如何配置Sublime Text 3中的php語法錯誤提示插件?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
Sublime Text 3配置php語法錯誤提示插件的方法:首先下載sniffer插件安裝包;然后下載插件并放到php.exe安裝目錄里;接著設置都改成本地環境下的php安裝路徑;最后保存,重啟Sublime Text 3即可。
Sublime Text 3配置php語法錯誤提示插件的方法:
第一步:下載php code sniffer插件安裝包
解壓安裝包得到sublime-phpcs-master,把sublime-phpcs-master文件夾放到sublime安裝目錄下的Data/Packages/目錄下;
重啟sublime, 打開Sublime Text 3->Preferences->Package Settings -> Php Code Sniffer 證明插件安裝成功;
第二步:下載php-cs-fixer.phar
第三步:把php-cs-fixer.phar 放到你的 php.exe 安裝目錄 (例如(mine is C:/WAMP/php/php.exe));
第四步:下載 http://download.pear.php.net/package/PHP_CodeSniffer-1.5.0RC4.tgz,解壓,然后找到scripts目錄下的phpcs.bat,放到php.exe 安裝目錄;
第五步:解壓打開,在子文件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
{ // 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程序,語法錯誤提示如下圖:
看完上述內容,你們掌握如何配置Sublime Text 3中的php語法錯誤提示插件的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。