PHP 判断字符串中是否包含空格
时间: 2023-10-25 11:08:05 浏览: 191
判断字符串是否为空
可以使用 PHP 的 strpos() 函数来判断字符串中是否包含空格,例如:
```
<?php
$string = "This is a string with a space.";
if(strpos($string, " ") !== false) {
echo "The string contains space.";
} else {
echo "The string does not contain space.";
}
?>
```
这段代码会输出:The string contains space.
阅读全文