确保字符串没有空格?


若要检查字符串中是否有空格,请在 PHP 中使用 preg_match()。

语法如下 

preg_match('/\s/',$yourVariableName);

示例

PHP 代码如下

 实时演示

<!DOCTYPE html>
<html>
<body>
<?php
$name="John Smith";
if ( preg_match('/\s/',$name) ){
   echo "The name (",$name,") has the space";
} else {
   echo "The Name (",$name,") has not the space";
}
?>
</body>
</html>

输出

这将生成以下输出

The name (John Smith) has the space

更新于: 13-Oct-2020

3K+ 浏览量

开启您的 职业 生涯

完成课程以获得认证

开始学习
广告