您好,登錄后才能下訂單哦!
如何配置Sublime Text 3中的php語(yǔ)法錯(cuò)誤提示插件?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
Sublime Text 3配置php語(yǔ)法錯(cuò)誤提示插件的方法:首先下載sniffer插件安裝包;然后下載插件并放到php.exe安裝目錄里;接著設(shè)置都改成本地環(huán)境下的php安裝路徑;最后保存,重啟Sublime Text 3即可。
Sublime Text 3配置php語(yǔ)法錯(cuò)誤提示插件的方法:
第一步:下載php code sniffer插件安裝包
解壓安裝包得到sublime-phpcs-master,把sublime-phpcs-master文件夾放到sublime安裝目錄下的Data/Packages/目錄下;
重啟sublime, 打開(kāi)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 安裝目錄;
第五步:解壓打開(kāi),在子文件example-settings下有個(gè)文件
windows-7-phpcs-fixer-linter.example
就是Sublime Text 3 在windows7配置 PHPCS 的樣例,還有一個(gè)nix-all-commands.example是在linux/unix環(huán)境下的配置樣例
第六步:以下就是windows-7-phpcs-fixer-linter.example
的配置內(nèi)容,打開(kāi)你的Sublime Text 3->Preferences->Package Settings -> Php Code Sniffer -> Settings - User ,復(fù)制windows-7-phpcs-fixer-linter.example
的內(nèi)容到配置文件phpcs.sublime-settings,然后修改對(duì)應(yīng)的php.exe路徑
設(shè)置都改成你本地環(huán)境下的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,打開(kāi)php程序,語(yǔ)法錯(cuò)誤提示如下圖:
看完上述內(nèi)容,你們掌握如何配置Sublime Text 3中的php語(yǔ)法錯(cuò)誤提示插件的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。