fucongcong/framework

View on GitHub
core/Group/Common/SecurityToolkit.php

Summary

Maintainability
A
1 hr
Test Coverage

Showing 17 of 17 total issues

Method html has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

public static function html($text, $tags = null) {
$text = trim($text);
//过滤换行符
$text = preg_replace('/\r?\n/', '', $text);
//完全过滤注释
Severity: Minor
Found in core/Group/Common/SecurityToolkit.php - About 1 hr to fix

    The method text has a boolean flag argument $parse_br, which is a certain sign of a Single Responsibility Principle violation.
    Open

    public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
    Severity: Minor
    Found in core/Group/Common/SecurityToolkit.php by phpmd

    The method text uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

    } else {
    $text = nl2br($text);
    }
    Severity: Minor
    Found in core/Group/Common/SecurityToolkit.php by phpmd

    The parameter $quote_style is not named in camelCase.
    Open

    public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
    if (is_numeric($text))
    $text = (string)$text;
     
    if (!is_string($text))
    Severity: Minor
    Found in core/Group/Common/SecurityToolkit.php by phpmd

    The parameter $parse_br is not named in camelCase.
    Open

    public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
    if (is_numeric($text))
    $text = (string)$text;
     
    if (!is_string($text))
    Severity: Minor
    Found in core/Group/Common/SecurityToolkit.php by phpmd

    Inline control structures are not allowed
    Open

    if (!is_string($text))

    Spaces must be used to indent lines; tabs are not allowed
    Open

    /**

    Line exceeds 120 characters; contains 127 characters
    Open

    while (preg_match('/(<[a-z]+)(window\.|javascript:|js:|about:|file:|document\.|vbs:|cookie)([^><]*)/i', $text, $mat)) {

    Inline control structures are not allowed
    Open

    if (is_numeric($text))

    Line exceeds 120 characters; contains 174 characters
    Open

    * @param int $quote_style ENT_NOQUOTES:(默认)不过滤单引号和双引号 ENT_QUOTES:过滤单引号和双引号 ENT_COMPAT:过滤双引号,而不过滤单引号

    Line exceeds 120 characters; contains 158 characters
    Open

    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
    Open

    public static function html($text, $tags = null) {

    Opening brace should be on a new line
    Open

    public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {

    No space found after comma in function call
    Open

    $text = str_replace('\\','\\\\',$text);

    No space found after comma in function call
    Open

    $text = str_replace('\\','\\\\',$text);

    The variable $parse_br is not named in camelCase.
    Open

    public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
    if (is_numeric($text))
    $text = (string)$text;
     
    if (!is_string($text))
    Severity: Minor
    Found in core/Group/Common/SecurityToolkit.php by phpmd

    The variable $quote_style is not named in camelCase.
    Open

    public static function text($text, $parse_br = false, $quote_style = ENT_NOQUOTES) {
    if (is_numeric($text))
    $text = (string)$text;
     
    if (!is_string($text))
    Severity: Minor
    Found in core/Group/Common/SecurityToolkit.php by phpmd
    Category
    Status