PHP CodeSniffer安装与简单使用

1、安装pear和imagick扩展:

apt-get install php-pear

apt-get install php5-imagick imagemagick

2、安装PHP CodeSniffer:

pear install PHP_CodeSniffer

3、可以使用如下命令查看具体信息:

phpcs -h

4、使用psr2标准检查代码格式:

phpcs --standard=psr2 文件目录

5、对于简单的格式与语法错误,可使用phpcbf自动优化:

phpcbf --standard=psr2 文件目录

你可能感兴趣的:(PHP CodeSniffer安装与简单使用)