vim外掛程式phpcheck安裝與使用 -- 高效的檢查php語法錯誤

來源:互聯網
上載者:User

標籤:

1 簡介    在PHP檔案儲存時會自動進行語法檢查,有錯誤會提示,沒有錯誤不提示。*語法檢查使用系統的php -l -n命令;*對非PHP檔案不起作用; 




2 下載(v1.1版本)    http://www.vim.org/scripts/script.php?script_id=4984




3 安裝   
    # whereis vim
    
    上傳外掛程式(phpcheck.vim) 到 plugin目錄
    # cd /usr/share/vim/vim74/plugin/
    # rz -y


4 使用

test10.php

<?php$a = 1$b = 2?>


當執行w寫入時候,報錯提示



5 phpcheck.vim 內容

"PHP語法檢查外掛程式 phpcheck.vim"2014.7.9 PHP儲存時自動檢查"2014.8.8 加-n, *.php, 去掉判斷, 快速鍵"@author quanhengzhuangautocmd BufWritePost *.php call PHPSyntaxCheck()if !exists('g:PHP_SYNTAX_CHECK_BIN')    let g:PHP_SYNTAX_CHECK_BIN = 'php'endiffunction! PHPSyntaxCheck()    let result = system(g:PHP_SYNTAX_CHECK_BIN.' -l -n '.expand('%'))    if (stridx(result, 'No syntax errors detected') == -1)        echohl WarningMsg | echo result | echohl None    endifendfunction


vim外掛程式phpcheck安裝與使用 -- 高效的檢查php語法錯誤

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.