Regex PHP - Auto-detect YouTube, image and “regular” links

前端 未结 3 508
情话喂你
情话喂你 2020-12-17 04:47

I want to make it so that in my chat-application, links to websites can be clickable and links to YouTube and images automatically gets embedded.

I\'ve made this cod

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-17 05:35

    The code of Tim Cooper doesn't working with https link. Ex: https://www.facebook.com/ It will return http://https://www.facebook.com/

    Replace

    if(strpos($arr[0], 'http://') !== 0)
    

    by

    if(strpos($arr[0], 'http') !== 0)
    

提交回复
热议问题