-1

我想知道适用于检查包含某些 HTML 标签的字符串的可能正则表达式,即 ,<b><i>/<a>或它没有任何标签。使用 PHP preg_match。

例如:

"This a text only.." return true
"This is a <b>bold</b> text" return true
"this is <script>alert('hi')</script>" return false
"this is <a href="#">some</a>and <h1>header</h1>" return false
4

1 回答 1

8

尝试strip_tags()改用。正则表达式不适合解析 HTML 标签。

var_dump(isTextClean('This a text only..')); // true
var_dump(isTextClean('This is a <b>bold</b> text')); // true
var_dump(isTextClean('this is <script>alert(\'hi\')</script>')); // false
var_dump(isTextClean('this is <a href="#">some</a>and <h1>header</h1>')); // false

function isTextClean($input) {
    $result = strip_tags($input, '<b><i><a>');

    if ($result != $input) {
        return false;
    } else {
        return true;
    }
}
于 2012-08-12T01:01:52.857 回答