PHP regex çıplak adresler maç nasıl?

0 Cevap php
$bits = preg_split('#((?:https?|ftp)://[^\s\'"<>()]+)#S', $token->data, -1, PREG_SPLIT_DELIM_CAPTURE);

Say, yukarıda linkified.The gereken adresler çok müsamahakar maç için çalışıyorum.

Ben sadece http://google.com gibi basit bir URL ile eşleşmesini istiyorum, ama <a href="http://google.com">http://google.com</a>, ya da <iframe src="http://google.com"></iframe>

0 Cevap