함수 extract urls()


1 PHP[ | ]

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

2 같이 보기[ | ]