preg_replace输出不正确

时间:2019-05-11 12:28:22

标签: php regex preg-replace

我有这个例子。

$link='http://www.mylink.com';
$string= 'You have confirmed your account. <br /> Please click {here} to log in';
echo preg_replace('/(\[(.+)\])/', '<a href="' . $link . '">$2</a>', $string);

,输出为:

  

您已确认您的帐户。请点击{here}登录

出什么问题了?

0 个答案:

没有答案