良好的代碼規範能夠提升代碼可讀性,團隊溝通維護成本。最推薦你們遵照的是 php-fig(PHP Framework Interop Group) 組織定義的 PSR-1 、 PSR-2 兩個。不瞭解的同窗能夠先經過連接點擊過去閱讀下。php
這個工具的做用就是按照 PSR-1
和 PSR-2
的規範格式化你的代碼。html
PHP需求:PHP最小版本5.3.6。git
本地安裝
安裝很簡單,下載php-cs-fixer.phar文件就好了。官方地址是:
http://get.sensiolabs.org/php-cs-fixer.phargithub
國內的朋友若是下載很慢,可使用百度雲:
連接: http://pan.baidu.com/s/1qWUTd5y 密碼: yithjson
Composer方式安裝
若是你還不瞭解Composer,請點擊連接查看。segmentfault
新建composer.jsoncomposer
{ "require" :{ "fabpot/php-cs-fixer":"*" },"config": { "secure-http": false } }
運行:框架
composer update
稍等片刻,下載完成:目錄生成了vendor文件夾。ide
設置全局:工具
export PATH="$PATH:$HOME/.composer/vendor/bin"
注意,composer安裝的與本地方式安裝後調用的執行文件是不同的。本地安裝執行的是php-cs-fixer.phar
;composer安裝的執行的是php vendor\fabpot\php-cs-fixer\php-cs-fixer
。
homebrew安裝
$ brew install homebrew/php/php-cs-fixer
命令行運行:
php-cs-fixer
會給出不少幫助提示。
使用 fix 指令修復文件夾或文件的代碼風格
php php-cs-fixer.phar fix /path/to/dir php php-cs-fixer.phar fix /path/to/file
選項:
--format 輸出文件格式,支持txt、xml --verbose --level 應用哪一種PSR類型。支持psr0、psr一、psr2。默認是psr2 --dry-run 顯示須要修復可是沒有修復的代碼
php php-cs-fixer.phar fix /path/to/project --level=psr0 php php-cs-fixer.phar fix /path/to/project --level=psr1 php php-cs-fixer.phar fix /path/to/project --level=psr2 php php-cs-fixer.phar fix /path/to/project --level=symfony
示例:
$ php php-cs-fixer.phar fix test.php 1) test.php Fixed all files in 0.290 seconds, 4.250 MB memory used
有一些要注意的地方是,php-cs-fixer 由於是在不破壞相容性的前提下修正的,因此有些 方法命名
的規則就沒法修。不過比起手動修正,能夠省下很多時間。
更多使用方式參見 Usage。
在一些開源框架中都看到了 .php_cs
文件。這個文件即是php-cs-fixer的格式化配置。
官方是這麼描述的:
Instead of using command line options to customize the fixer, you can save the configuration in a .php_cs file in the root directory of your project.
如何使用.php_cs
?
$ php php-cs-fixer fix --config-file .php_cs test.php Loaded config from ".php_cs" 1) test.php Fixed all files in 0.242 seconds, 4.250 MB memory used
使用--config-file
加載.php_cs
文件。文件內容詳情見文末。
php php-cs-fixer.phar self-update
或者
$ sudo php-cs-fixer self-update
composer方式:
$ ./composer.phar global update fabpot/php-cs-fixer
brew方式:
$ brew upgrade php-cs-fixer
當咱們使用 PHP-CS-Fixer 讓咱們現有的代碼規範化以後,咱們怎麼確保之後開發的代碼,以及別人 pr 的代碼都能正確的符合代碼風格規範呢?
StyleCI 是一個 Laravel5 項目,功能實現也是由 PHP-CS-Fixer 驅動。
它能夠本身分析你項目的 pull request,而且在你 merge 前顯示出分析的結果。
該工具沒有具體使用過,下面是它的官網,感興趣的同窗能夠看看。
官方網站:https://styleci.io/
PHP Coding Standards Fixer--FriendsOfPHP
https://github.com/FriendsOfPHP/PHP-CS-Fixer
使用 PHP-CS-Fixer 自動規範化你的 PHP 代碼_PHPHub - PHP & Laravel的中文社區
https://phphub.org/topics/547
如今寫 PHP,你應該知道這些 - Scholer 的 PHP 之路 - SegmentFault
https://segmentfault.com/a/1190000003844380
Basic php-cs-fixer rules
https://github.com/XiaoLer/php-develop-standards/blob/master/php-cs-fixer-rules.md
<?php $header = <<<EOF This file is part of the PHP CS utility. (c) Fabien Potencier <fabien@symfony.com> This source file is subject to the MIT license that is bundled with this source code in the file LICENSE. EOF; Symfony\CS\Fixer\Contrib\HeaderCommentFixer::setHeader($header); return Symfony\CS\Config\Config::create() // use default SYMFONY_LEVEL and extra fixers: ->fixers(array( 'header_comment', 'long_array_syntax', 'ordered_use', 'php_unit_construct', 'php_unit_strict', 'strict', 'strict_param', )) ->finder( Symfony\CS\Finder\DefaultFinder::create() ->exclude('Symfony/CS/Tests/Fixtures') ->in(__DIR__) ) ;