if (preg_match ('/[^a-zA-Z0-9]/i', $getname)) {
我使用这个preg_match模式来检查php中的字符串是否包含除a-zA-Z0-9之外的其他字符串.我想在模式中添加空间…我使用’/ [^ a-zA-Z0-9] / i’但是不工作……我应该怎么做?
我想允许空间包括a-zA-Z0-9
最佳答案
if (preg_match ('/[a-zA-Z0-9 ]/', $getname)) {
if (preg_match ('/[^a-zA-Z0-9]/i', $getname)) {
我使用这个preg_match模式来检查php中的字符串是否包含除a-zA-Z0-9之外的其他字符串.我想在模式中添加空间…我使用’/ [^ a-zA-Z0-9] / i’但是不工作……我应该怎么做?
我想允许空间包括a-zA-Z0-9
最佳答案
if (preg_match ('/[a-zA-Z0-9 ]/', $getname)) {