确保字符串没有空格?
若要检查字符串中是否有空格,请在 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
广告