我想检测一个 URI 是否位于字符串中,对其进行适当的清理,并使用适当的锚标记输出它。
即,用户输入:
Check out our profile on facebook!
https://facebook.com/ourprofile
and our twitter!
twitter.com/#!/ourprofile
and email us!
ourprofile@stack.com
有没有办法确定字符串中存在 URI,清理不安全字符并正确输出安全锚点?
所以输出将是:
Check out our profile on facebook!
<a href="https://www.facebook.com/ourprofile">https://www.facebook.com/ourprofile</a>
and our twitter!
<a href="http://www.twitter.com/#!/ourprofile">twitter.com/#!/ourprofile</a>
and email us!
<a href="mailto:ourprofile@stack.com">ourprofile@stack.com</a>
我想到的想法是使用preg_match
简单preg_replace
的方法来删除不安全的字符,但这让我失望了,我只是在兜圈子,我真的不知道从哪里开始,因为我几乎可以肯定这样的黑名单方法是不合适的或安全。