Regex to get linked images

Discussion in 'PHP' started by Nightmare, Jan 31, 2006.

  1. #1
    Hi!
    I need a Regex to get linked images in a page ( not image <img src )

    Anyone can help me? I didnt find nothing :(

    I tried snoopy with a patch, but it doesnt works :(

    Thanks
     
    Nightmare, Jan 31, 2006 IP
  2. hdogan

    hdogan Peon

    Messages:
    316
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Do you mean <a href=blabla><img src=blabla></a> with linked images? Do you have an example HTML source?
     
    hdogan, Feb 2, 2006 IP
  3. Nightmare

    Nightmare Peon

    Messages:
    79
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Yes, for example

    <a href="http://www.website.tld/full/image.jpg"><img src="http://www.anything.tld/something/image.jpg" alt="cool image"class="adsbox"></a>

    I need the red text.
     
    Nightmare, Feb 3, 2006 IP
  4. hdogan

    hdogan Peon

    Messages:
    316
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #4
    <?php
    preg_match_all("/<a href=\"http:\/\/(.*?).(jpg|jpeg|gif|png)\">/si", $html, $match, PREG_SET_ORDER);
    for ($i = 0; $i < count($match); $i++) {
        $image = "http://".$match[$i][1].".".$match[$i][2];
        echo $image."<br />\n";
    }
    ?>
    PHP:
    PS: I haven't tested the code.
     
    hdogan, Feb 3, 2006 IP
  5. Nightmare

    Nightmare Peon

    Messages:
    79
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I have not much time now to test it better, but with a small test seems to not work :x
     
    Nightmare, Feb 9, 2006 IP
  6. averagejoe

    averagejoe Peon

    Messages:
    22
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Try this regex:
    /href=\"([^\"]*)\"[^>]*>\s*<img/
    Code (markup):
     
    averagejoe, Feb 9, 2006 IP
  7. Nightmare

    Nightmare Peon

    Messages:
    79
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    tnx a lot! its perfect!!!

    tnx dogan anyway
     
    Nightmare, Feb 11, 2006 IP
  8. jackcheng

    jackcheng Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    I'm having trouble trying to grab the entire link with the image:

    blah blah blah <a href="http://www.website.tld/full/image.jpg"><img src="http://www.anything.tld/something/image.jpg" alt="cool image"class="adsbox"></a> text here

    any ideas?
     
    jackcheng, Apr 19, 2006 IP