警告:preg_match()[function.preg_match]

时间:2013-05-17 08:55:34

标签: php preg-match eregi

我的模式

有问题

eregi 转换为 preg_match 代码后出现问题

错误,例如未知修饰符'J'未知修饰符'N'

eregi

中的模式
eregi("^name=".$name, $pg);

然后在 preg_match

preg_match('/^name=/'.$name, $pg);

我也尝试 / pattern / i #pattern# ~pattern~

1 个答案:

答案 0 :(得分:2)

您需要在模式中移动$name

preg_match('/^name=' . preg_quote($name, '/') . '/', $pg);