首页 > 代码库 > 使用php-cs-fixer格式化你的代码

使用php-cs-fixer格式化你的代码

在开发中,我们会有意识的遵行一套规范来保证团队代码的一致性。PSR是我们PHP遵循的共同规范。

在这里,推荐一个代码格式化工具php-cs-fixer,可以一键把代码格式化为PSR-2的标准。


安装:

    # 在linux(虚拟机)下执行
    curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.0.0/php-cs-fixer.phar -o php-cs-fixer
    chmod a+x php-cs-fixer
    mv php-cs-fixer /usr/local/bin/php-cs-fixer

 

使用:  

    # 格式化当前目录下代码 
    php-cs-fixer fix .

 

就是那么简单!

参考资料: https://laravel-china.org/topics/547

使用php-cs-fixer格式化你的代码