感谢@Mihai Stancu,我得到了一个将相对网址替换为绝对网址的功能。我改进了它,所以它是为 href 和 src 值做的。
我有一个带有一个日历的域,并且我正在将一些事件转移到另一个域,我也使用这些事件。我拥有这两个域,因此创建绝对 URL 没有安全风险。
但是该功能有一个错误 - 它也替换了绝对链接,因此http://www.example.com/ ... 变为http://www.example.net/http://www.example.com/ ...你能帮我吗?
如果您愿意,请随时改进功能:-)
<?php
$domain = 'http://www.example.net/'; // notice the domain has an end slash
$textarea = 'tester afadf adf <a href="http://www.example.com/folder1/page1.html">do not replace this</a> ... bla bla <a href="/folder2/page2.html">do replace this url</a> bla bla.... <img src="http://www.example.com/somefolder/somepic.jpg" /> <img src="/somefolder/somepic.jpg" />';
$tags = array("href", "src");
foreach ($tags as $tag) {
$textarea = preg_replace('/'.$tag.'\s*=\s*(?<'.$tag.'>"[^\\"]*"|\'[^\\\']*\')/e', 'expand_links($tag, $domain, "$1")', $textarea);
}
function expand_links($tag, $domain, $link) {
return($tag.'="'.$domain.trim($link, '\'"/\\').'"');
}
echo $textarea;
?>