标签: 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}登录
出什么问题了?