0

@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;
?>
4

1 に答える 1

0

まだ正規表現から出血している目。

DOMDocumentはどうですか?:)

$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" />';

// wrap fragment into a full HTML body first (making sure the content type is set properly)
$full_doc = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><body>' . $textarea . '</body></html>';

$d = new DOMDocument;
libxml_use_internal_errors(true); // muffle any errors from libxml
$d->loadHTML($textarea);
libxml_clear_errors(); // clear the errors found

$x = new DOMXPath($d);

// find all tags with either href or src attribute
foreach ($x->query('//*[@href|@src]') as $e) {
    $attr = $e->getAttributeNode('href') ?: $e->getAttributeNode('src');

    if (!preg_match('#^(?:https?://|mailto:)#', $attr->nodeValue)) {
        // not absolute
        $attr->nodeValue = $domain . $attr->nodeValue;
    }
}

echo $d->saveHTML();

免責事項:これはフラグメントではなくHTMLドキュメント全体を返します。フラグメントが必要な場合は、代わりsaveHTMLbodyタグを呼び出すことができます。

于 2012-05-20T18:14:10.677 に答える