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

5번째 줄: 5번째 줄:
<source lang='php'>
<source 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];
}
}

2016년 5월 22일 (일) 04:13 판


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 }}