0

如果下面的变量不包含任何字符,只有任意数量的空格,我想将用户重定向到使用header("Location: URL"); exit();.

我怎样才能做到这一点?

$comment = mysql_real_escape_string($_POST['comment']);
4

5 回答 5

2

这里有2种方法:

if (trim($var, ' ') == '') {
    // $var consists of only spaces
}

// or

if (str_replace(' ', '', $var) == '') {
    // $var consists of only spaces
}
于 2012-06-25T23:51:37.067 回答
1

我会为 PCRE 使用 \s 标识符,这也将捕获标签等:

if (preg_match('/^\s+$/', $comment) { ... }

[编辑] 或者,如果您还想捕获完全空的字符串:

if (preg_match('/^\s*$/', $comment) { ... }
于 2012-06-25T23:51:46.370 回答
0
!trim( $_POST['comment'] ) && header( "Location: URL" );
于 2012-06-25T23:51:29.300 回答
0
if(str_replace(" ", "", $comment) == "")
{
  header("Location: URL");
  exit();
}
于 2012-06-25T23:52:51.617 回答
0
if(strlen(trim($comment)) == 0) header('Location: URL');
于 2012-06-25T23:53:42.740 回答