이것은 당신을 위해 일을 할 것입니다. 어떻게 작동하는지에 대한 설명은 아래를 참조하십시오.
$string = 'some text www.example.com more text http://example.com more text https://www.example.com more text';
$string = preg_replace('#\b(?:http(s?)://)?((?:[a-z\d-]+\.)+[a-z]+)\b#', "<a href='http$1://$2'>http$1://$2</a>", $string);
echo $string; // some text <a href='http://www.example.com'>http://www.example.com</a> more text <a href='http://example.com'>http://example.com</a> more text <a href='https://www.example.com'>https://www.example.com</a> more text
\b
일치하는 단어 경계 (?:http(s?)://)?
선택적으로 일치하는 문자열 HTTPS는 's'
그래서 우리는 올바른 URL
(?:[a-z\d-]+\.)+
일치 하나의 편지 시리즈의 더 많은 발생을 구축 할 수 있습니다 잡아 경우는, 'http://'
또는 'https://'
포함 된 경우/숫자 다음에 마침표가 붙습니다.
[a-z]+
일련의 문자 TLD가 1 회 이상 일치하므로 TLD를 구입할 수 있으므로 더 이상 길이를 제한 할 수 없습니다 . http://tinyurl.com/cle6jqb
그런 다음 괄호로 묶어 역 참조로 마지막 두 섹션 모두를 캡처합니다.
우리는 다음 URL을 구축 :
<a href='http$1://$2'>http$1://$2</a>
http$1://
는 HTTP 역 참조 $1
도메인 이름을 포함 할 것 's'
$2
포함됩니다 HTTPS 경우 만듭니다. 우리는 URL이 링크 텍스트가되는 링크를 만듭니다.
본 적이 있습니까? http://php.net/manual/en/regexp.reference.back-references.php 또는 http://www.regular-expressions.info/brackets.html? – elclanrs
이것은 역 참조가 아닙니다. 이 컨텍스트에서는 일치하는 그룹 자리 표시 자입니다. – mario