一個自動檢查PHP語法錯誤的Sublime套件。
安裝
ctrl + shift + P Package Control: Install Package
安裝 SublimeLinter
安裝 SublimeLinter-php
設定 PHP 執行檔路徑 Preferences > Package Settings > SublimeLinter > Settings – User
設定路徑後重新啟動
“paths”: {
“linux”: [],
“osx”: [],
“windows”: [
“F:/xampp/php/”
]
},
只列出部分設定值
Show console ctrl + ` or View > Show Console
顯示 SublimeLinter: WARNING: php deactivated, cannot locate ‘php’ 代表沒有設定
顯示 SublimeLinter: php activated: F:\xampp\php\php.exe 代表設定成功
成功 (如果忘記加;)demo.png
設定
“mark_style”: “fill”: 標記為填滿
“show_errors_on_save”: true: 儲存時檢查錯誤
也可以到 Tools > SublimeLinter 去做設定
資料來源:https://clouding.city/sublime/linter-php/