他是怎么绕过注册10字符限制的???
我看到是很多空格。。。
但是正常的输入空格没道理会成功的。。
有爱好者来帮我找找原因吧。
链接地址
http://bbs.youyax.com/content-5511
关于过滤的写法
public function transform($txt)
{
$txt = trim($txt);
$txt = addslashes(htmlspecialchars($txt, ent_quotes, utf-8));
if (preg_match_all(/\quote:(.+?)\[\/quote]/is, $txt, $match)) {
$txt = preg_replace('/\s*\r\n\s*/', '', $txt, 1);
}
$huanhang = array(
\r\n,
\n,
\r
);
$txt = str_replace($huanhang, '
', $txt);
------解决方案--------------------
图片显示:文字到省略号间有一段空白
连浏览器都不认为是半角空格,你还 \s 有何用?