@Mihai Stancuのおかげで、相対URLを絶対URLに置き換える関数を入手しました。私はそれを改善したので、hrefとsrcの値に対してそれを行っています。
1つのカレンダーがオンになっている1つのドメインがあり、これらのイベントを使用する別のドメインにいくつかのイベントを転送しています。私は両方のドメインを所有しているので、絶対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;
?>