fork download
  1. <?php
  2.  
  3. $images = <<<END
  4. <img src="/data/img/201108031_023" width="300" height="400" />
  5. <img src="/data/img/201108031_026" width="250" height="300" />
  6. <img src="/data/img/201108031_028" width="400" height="300" />
  7. <img src="/data/img/201108031_032" width="500" height="400" />
  8. ...
  9. END;
  10.  
  11. preg_match_all("/<img[^>]*width=\"([3-9][0-9]{2}|[1-9][0-9]{3,})\"[^>]*>/",$images,$matches);
  12. print_r($matches);
  13.  
  14. ?>
Success #stdin #stdout 0s 13112KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => <img src="/data/img/201108031_023" width="300" height="400" />
            [1] => <img src="/data/img/201108031_028" width="400" height="300" />
            [2] => <img src="/data/img/201108031_032" width="500" height="400" />
        )

    [1] => Array
        (
            [0] => 300
            [1] => 400
            [2] => 500
        )

)