代码如下,已测试通过。 <?php $bb=' '; $rs=preg_match("/^[\\s]*$/", $bb); if ($rs){ echo 'yes'; } else echo 'no'; ?> 如果匹配的不包含空字符的话,就把*改成+就ok了。