Topic: Парсер картинок с помощью PHP
Этот парсер картинок на PHP выдергивает все картинки со страницы
$szSearchPattern = '~<img [^>]* />~';
preg_match_all( $szSearchPattern, $html_page, $aPics );
// Check to see if we have at least 1 image
$iNumberOfPics = count($aPics[0]);
if ( $iNumberOfPics > 0 ) {
// Now here you would do whatever you need to do with the images
// For this example the images are just displayed
for ( $i=0; $i < $iNumberOfPics ; $i++ ) {
$catching_image = $aPics[0][$i];
};
};