可能重复:
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完成?
感谢名单
答案 0 :(得分:0)
试试这个:
$toStr = preg_replace("/<a\shref=\"http:\/\//","${1}http://myurls.com/index.php?to=",$fromStr);