在PHP中的preg_replace中使用$ variables不起作用

时间:2015-10-30 20:08:50

标签: php preg-replace

我尝试使用preg_replace创建网址,但它不允许我替换其中包含$variables的字符串。我该如何解决这个问题?

基本上我尝试使用网址转换#hashtag$comment的任何实例。

$regex = "/#+([a-zA-Z0-9_]+)/";
$replace = '<a href="comments.php?topicID='.$topicID.'&problemID=.'$problemID.'&hashtag=$1&solution=">$0</a>';
$comment = preg_replace($regex, $replace, $comment);

0 个答案:

没有答案