字符串 只能包含 中英文,数字,'-','_'
的php正则表达式。 使用preg_match()
函数。
字符串 只能包含 中英文,数字,'-','_'
的php正则表达式。 使用preg_match()
函数。
我看你主要是想解决匹配中文的问题吧,试试这个
<code class="php">preg_match("/^[\x{4e00}-\x{9fa5}]+$/u", $str)</code>
如果加上英文数字和两个符号
<code class="php">preg_match("/^[\x{4e00}-\x{9fa5}a-zA-Z0-9_\-]+$/u", $str)</code>
参考 php 正则匹配中文,去看看吧,作者很花了些工夫在这上面。