Method html
has 36 lines of code (exceeds 25 allowed). Consider refactoring.
public static function html($text, $tags = null) {
$text = trim($text);
$text = preg_replace('/\r?\n/', '', $text);
The method text has a boolean flag argument $parse_br, which is a certain sign of a Single Responsibility Principle violation.
public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
The method text uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
} else {
$text = nl2br($text);
}
The parameter $quote_style is not named in camelCase.
public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
if (is_numeric($text))
$text = (string)$text;
if (!is_string($text))
The parameter $parse_br is not named in camelCase.
public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
if (is_numeric($text))
$text = (string)$text;
if (!is_string($text))
Inline control structures are not allowed
if (!is_string($text))
Spaces must be used to indent lines; tabs are not allowed
/**
Line exceeds 120 characters; contains 127 characters
while (preg_match('/(<[a-z]+)(window\.|javascript:|js:|about:|file:|document\.|vbs:|cookie)([^><]*)/i', $text, $mat)) {
Inline control structures are not allowed
if (is_numeric($text))
Line exceeds 120 characters; contains 174 characters
* @param int $quote_style ENT_NOQUOTES:(默认)不过滤单引号和双引号 ENT_QUOTES:过滤单引号和双引号 ENT_COMPAT:过滤双引号,而不过滤单引号
Line exceeds 120 characters; contains 158 characters
while (preg_match('/(<[a-z]+)(lang|on|action|background|codebase|dynsrc|lowsrc|style|class|width|height|align|hspace|valign)[^><]+/i', $text, $mat)) {
Opening brace should be on a new line
public static function html($text, $tags = null) {
Opening brace should be on a new line
public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
No space found after comma in function call
$text = str_replace('\\','\\\\',$text);
No space found after comma in function call
$text = str_replace('\\','\\\\',$text);
The variable $parse_br is not named in camelCase.
public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
if (is_numeric($text))
$text = (string)$text;
if (!is_string($text))
The variable $quote_style is not named in camelCase.
public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
if (is_numeric($text))
$text = (string)$text;
if (!is_string($text))
There are no issues that match your filters.