Sublime Text 3 PHP程式碼格式化外掛phpfmt的安裝和配置
1.安裝sublime-phpfmt-for-windows外掛
Ctrl+Shift+P——輸入pci回車——輸入sublime-phpfmt-for-windows發現找不到該外掛——Esc退出——Ctrl+Shift+P——輸入pca回車——將該外掛的github地址貼上到Sublime編輯器下面的輸入框中並回車——Ctrl+Shift+P——輸入pci回車——輸入sublime-phpfmt-for-windows發現這時可以找到該外掛了——開啟Packages資料夾(Sublime——Preferences——Browse Packages)——找到sublime-phpfmt-for-windows資料夾下的phpfmt.sublime-settings檔案,將其內容改為:
{
"version": 4,
"php_bin":"C:/wamp64/bin/php/php7.0.0/php.exe",//填寫你的php.exe的地址
"format_on_save":true,
"option": "value"
}
2.安裝phpfmt外掛:
Ctrl+Shift+P——輸入pci回車——輸入phpfmt回車,然後需要格式化php程式碼時,Ctrl+Shift+P,輸入phpfmt回車即可!
注:
1. PHP版本必須是7.0或7.0以上
2. Windows系統必須同時安裝sublime-phpfmt-for-windows和phpfmt這兩個外掛