因此,在 php_codesniffer 中,您可以忽略代码块的编码标准:
// @codingStandardsIgnoreStart
$a = ($b[$c >> 5 ] & 0x0080) &
($b[$c ] & 0x0100) & // here is a multi-line
// quote from some spec
($b[$c >> 20] );
// @codingStandardsIgnoreEnd
我认为这更具可读性,比如说,这个:
$a = ($b[$c >> 5] & 0x0080) & ($b[$c] & 0x0100) & ($b[$c >> 20]);
php-cs-fixer 是否让您像 php_codesniffer 那样忽略代码块的编码标准?