我尝试使用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);