preg_match无法正常工作

时间:2015-02-19 22:35:01

标签: php regex

我有字符串检查它是否包含有效字符。

这是代码

preg_match('/^[a-zA-Z0-9/-.,; ]+$/', $string)

当我删除" /"它有效

preg_match('/^[a-zA-Z0-9/-.,; ]+$/', $string)

这里有什么问题?

0 个答案:

没有答案