54

当它被分析时,可以忽略 php 文件中的某些部分代码PHP_CodeSniffer

4

3 回答 3

84

是的,可以使用 @codingStandardsIgnoreStart 和 @codingStandardsIgnoreEnd 注释

<?php
some_code();
// @codingStandardsIgnoreStart
this_will_be_ignored();
// @codingStandardsIgnoreEnd
some_other_code();

它也在文档中进行了描述。

于 2010-11-29T18:29:43.777 回答
34

您可以使用组合:@codingStandardsIgnoreStart@codingStandardsIgnoreEnd或者您可以使用@codingStandardsIgnoreLine.

例子:

<?php

command1();
// @codingStandardsIgnoreStart
command2(); // this line will be ignored by Codesniffer
command3(); // this one too
command4(); // this one too
// @codingStandardsIgnoreEnd

command6();

// @codingStandardsIgnoreLine
command7(); // this line will be ignored by Codesniffer
于 2015-06-10T11:09:00.383 回答
11

在 3.2.0 版本之前,PHP_CodeSniffer 使用不同的语法来忽略文件中的部分代码。请参阅Anti VeerannaMartin Vseticka 的答案。旧语法将在 4.0 版中删除

PHP_CodeSniffer 现在使用// phpcs:disable// phpcs:enable注释来忽略部分文件并// phpcs:ignore忽略一行。

现在,也可以只禁用或启用特定的错误消息代码、嗅探、嗅探类别或整个编码标准。您应该在注释后指定它们。--如果需要,您可以添加注释,解释为什么使用分隔符禁用和重新启用嗅探。

<?php

/* Example: Ignoring parts of file for all sniffs */
$xmlPackage = new XMLPackage;
// phpcs:disable
$xmlPackage['error_code'] = get_default_error_code_value();
$xmlPackage->send();
// phpcs:enable

/* Example: Ignoring parts of file for only specific sniffs */
// phpcs:disable Generic.Commenting.Todo.Found
$xmlPackage = new XMLPackage;
$xmlPackage['error_code'] = get_default_error_code_value();
// TODO: Add an error message here.
$xmlPackage->send();
// phpcs:enable

/* Example: Ignoring next line */
// phpcs:ignore
$foo = [1,2,3];
bar($foo, false);

/* Example: Ignoring current line */
$foo = [1,2,3]; // phpcs:ignore
bar($foo, false);

/* Example: Ignoring one line for only specific sniffs */
// phpcs:ignore Squiz.Arrays.ArrayDeclaration.SingleLineNotAllowed
$foo = [1,2,3];
bar($foo, false);

/* Example: Optional note */ 
// phpcs:disable PEAR,Squiz.Arrays -- this isn't our code
$foo = [1,2,3];
bar($foo,true);
// phpcs:enable PEAR.Functions.FunctionCallSignature -- check function calls again
bar($foo,false);
// phpcs:enable -- this is out code again, so turn everything back on

有关更多详细信息,请参阅PHP_CodeSniffer 的文档

于 2018-10-18T19:56:51.237 回答