PHP find all links in the text

后端 未结 8 1511
猫巷女王i
猫巷女王i 2021-02-15 23:36

I want to find all links in the text like this:

Test text http://hello.world Test text 
http://google.com/file.jpg Test text https://hell.o.wor.ld/test?qwe=qwe T         


        
8条回答
  •  名媛妹妹
    2021-02-16 00:37

    Alternative to regexp it´s use this library

    Works very good, butnot for very complex codes.

    foreach($html->find('a') as $element) 
           echo $element->href . '
    ';

    And easy to use. No regular expressions skills required:-)

提交回复
热议问题