是否可以编写MySQL查询来替换HTML超文本链接中的链接,如下所示:
前:
hello world <a href="http://www.sample.com/">hello world2</a>
hello world2 <a href="http://www.sample.com/news.php">hello world2</a>
并将其转换为:
hello world <a href="http://www.sample.com/?kid=1000">hello world2</a>
hello world <a href="http://www.sample.com/news.php?kid=1000">hello world2</a>
(基本上为以http://www.sample.com
开头的所有链接添加额外参数)