1. 安裝
$ cd /usr/local/bin
$ wget https://cs.symfony.com/download/php-cs-fixer-v2.phar -O php-cs-fixer
$ chmod +x php-cs-fixer
2. 配置到PhpStorm
ps:使用php-cs-fixer格式化你的代碼
在開發(fā)中,我們會(huì)有意識(shí)的遵行一套規(guī)范來保證團(tuán)隊(duì)代碼的一致性。PSR是我們PHP遵循的共同規(guī)范。
在這里,推薦一個(gè)代碼格式化工具php-cs-fixer,可以一鍵把代碼格式化為PSR-2的標(biāo)準(zhǔn)。如果以下安裝鏈接失效請(qǐng)查看https://github.com/FriendsOfPHP/PHP-CS-Fixer
安裝:
# 在linux(虛擬機(jī))下執(zhí)行
curl -L https://cs.symfony.com/download/php-cs-fixer-v2.phar -o php-cs-fixer
chmod a+x php-cs-fixer
mv php-cs-fixer /usr/local/bin/php-cs-fixer
使用:
# 格式化當(dāng)前目錄下代碼
php-cs-fixer fix .
就是那么簡(jiǎn)單!
參考資料: https://laravel-china.org/topics/547
總結(jié)
到此這篇關(guān)于使用php-cs-fixer格式化代碼的文章就介紹到這了,更多相關(guān)php-cs-fixer格式化代碼內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- PHP讀取CSV大文件導(dǎo)入數(shù)據(jù)庫的實(shí)例
- 完美解決php 導(dǎo)出excle的.csv格式的數(shù)據(jù)時(shí)亂碼問題