>  기사  >  백엔드 개발  >  태그 내의 URL을 유지하면서 일반 텍스트 URL을 HTML의 클릭 가능한 링크로 변환하는 방법은 무엇입니까?

태그 내의 URL을 유지하면서 일반 텍스트 URL을 HTML의 클릭 가능한 링크로 변환하는 방법은 무엇입니까?

Barbara Streisand
Barbara Streisand원래의
2024-11-01 17:06:02290검색

How to Convert Plain Text URLs to Clickable Links in HTML While Preserving URLs Within Tags?

태그가 지정되지 않은 URL을 변환하는 동안 HTML 태그 내의 URL 보존

HTML 문서에서는 일반 텍스트 URL을 클릭 가능한 URL로 변환하는 것이 바람직할 수 있습니다. HTML 태그에 이미 포함된 URL은 제외하고 링크를 삭제합니다. 많은 일반적인 텍스트 대체 방법이 실수로 태그가 지정된 URL을 대상으로 하기 때문에 이는 문제가 될 수 있습니다.

문제 설명

다음 HTML 텍스트 조각은 발생한 문제를 보여줍니다.

<code class="html"><p>I need you help here.</p>
<p>I want to turn this:</p>
<pre class="brush:php;toolbar:false">sometext sometext http://www.somedomain.com/index.html sometext sometext

into:

sometext sometext <a href=&quot;http://somedoamai.com/index.html&quot;>www.somedomain.com/index.html</a> sometext sometext

However, the existing regex solution also targets URLs within img tags:

sometext sometext <img src=&quot;http//domain.com/image.jpg&quot;> sometext sometext

Converting this accidentally produces:

sometext sometext <img src=&quot;<a href=&quot;http//domain.com/image.jpg&quot;>domain.com/image.jpg</a>&quot;> sometext sometext
**Solution** To effectively isolate and replace URLs that are not within HTML tags, we can leverage XPath and DOM manipulation. Using an XPath query, we can select text nodes containing URLs while excluding those that are descendants of anchor tags:

$texts = $xPath->query(

'/html/body//text()[
    not(ancestor::a) and (
    contains(.,&quot;http://&quot;) or
    contains(.,&quot;https://&quot;) or
    contains(.,&quot;ftp://&quot;) )]'

);

Once these text nodes are identified, we can replace them with document fragments containing the appropriate anchor elements. This ensures that the URLs are converted without affecting the surrounding HTML structure:

foreach($texts를 $text로) {

$fragment = $dom->createDocumentFragment();
$fragment->appendXML(
    preg_replace(
        &quot;~((?:http|https|ftp)://(?:\S*?\.\S*?))(?=\s|\;|\)|\]|\[|\{|\}|,|\&quot;|'|:|\<|$|\.\s)~i&quot;,
        '<a href=&quot;&quot;></a>',
        $text->data
    )
);
$text->parentNode->replaceChild($fragment, $text);

}

위 내용은 태그 내의 URL을 유지하면서 일반 텍스트 URL을 HTML의 클릭 가능한 링크로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.