如何获得仅包含a到z,A到Z,0到9以及一些符号的字符串?
你可以使用preg_match测试你的字符串(让$str):
原文链接:https://www.f2er.com/php/133899.htmlif(preg_match("/^[a-zA-Z0-9]+$/",$str) == 1) { // string only contain the a to z,A to Z,0 to 9 }
如果您需要更多符号,可以在之前添加它们]