如何preg_replace html(A)标签?

时间:2012-04-11 18:59:55

标签: php html function url preg-replace

  

可能重复:
  RegEx match open tags except XHTML self-contained tags

这是标签代码:

<a href="http://google.com/">Google</a>

如何使用preg_replace函数在http://google.com/

之前添加其他网址

例如:

不改变:

<a href="http://google.com/">Google</a>

更改后:

<a href="http://myurls.com/index.php?to=http://google.com/">Google</a>

看那里?? !!

我在原始网址

之前添加了http://myurls.com/index.php?to=

现在,,

如何通过preg_replace完成?

感谢名单

1 个答案:

答案 0 :(得分:0)

试试这个:

$toStr = preg_replace("/<a\shref=\"http:\/\//","${1}http://myurls.com/index.php?to=",$fromStr);