"함수 extract urls()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
3번째 줄: 3번째 줄:
==PHP==
==PHP==
[[분류: PHP]]
[[분류: PHP]]
<source lang='php'>
<syntaxhighlight lang='php'>
function extract_urls($text) {
function extract_urls($text) {
preg_match_all("/(\b(?:(?:https?|ftp):))?\/\/[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i", $text, $matches);
preg_match_all("/(\b(?:(?:https?|ftp):))?\/\/[-a-z0-9+&@#\/%?=~_|!:,.;\(\)]*[-a-z0-9+&@#\/%=~_|]/i", $text, $matches);
return $matches[0];
return $matches[0];
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[함수 is_url()]]
*[[함수 is_url()]]
*[[함수 preg_match_all()]]
*[[함수 preg_match_all()]]

2020년 11월 2일 (월) 02:36 기준 최신판


1 PHP[ | ]

function extract_urls($text) {
	preg_match_all("/(\b(?:(?:https?|ftp):))?\/\/[-a-z0-9+&@#\/%?=~_|!:,.;\(\)]*[-a-z0-9+&@#\/%=~_|]/i", $text, $matches);
	return $matches[0];
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}