PHP – 确保字符串没有空格

前端之家收集整理的这篇文章主要介绍了PHP – 确保字符串没有空格前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何检查 PHP字符串是否包含任何空格?我想检查是否有空格在那里,然后回显一个错误消息如果为true
if(strlen($username) == whitespace ){

                echo "<center>Your username must not contain any whitespace</center>";
if ( preg_match('/\s/',$username) ) ....
原文链接:https://www.f2er.com/php/140174.html

猜你在找的PHP相关文章