美文网首页
php安装格式化工具PHP—CS—Fixer

php安装格式化工具PHP—CS—Fixer

作者: wuhan_goer | 来源:发表于2018-09-27 19:23 被阅读147次

    PHP—CS—Fixer

    定义:PHP 编码格式化工具

    安装:

    curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.0.0/php-cs-fixer.phar -o php-cs-fixerchmoda+x php-cs-fixer

    chmod a+x  php-cs-fixer

    mv php-cs-fixer /usr/local/bin/php-cs-fixer

    在命令行执行php-cs-fixer,看到这个及表示安装成功

    成功了

    使用:

    写个test.php文件测试一下:

    执行:php-cs-fix fix(F) test.php  ,也可以自己定义php代码的风格,要编写.php_cs文件,执行的时候指定下php-cs-fix fix --config=.php_cs test.php。可见它会进行换行处理,但并不会修改常量的大小写的规范问题,只是格式用,不要完全依赖。

    相关文章

      网友评论

          本文标题:php安装格式化工具PHP—CS—Fixer

          本文链接:https://www.haomeiwen.com/subject/njzeoftx.html