leon_king Posted May 24, 2007 Share Posted May 24, 2007 hi guys, I really need help on how to check the page (html page) for images and display the url of the images. I'm searching for almost a week for the sample code but i can't find anything. What are the syntax that im going to use? Please help me with this I badly need this in my project. Thanks in Advance. Link to comment https://forums.phpfreaks.com/topic/52750-check-page-for-images/ Share on other sites More sharing options...
Caesar Posted May 24, 2007 Share Posted May 24, 2007 http://www.php.net If I understood you correctly...You'll want to parse the html and use regular expressions to search for images. That should get you pointed in the right direction. Link to comment https://forums.phpfreaks.com/topic/52750-check-page-for-images/#findComment-260520 Share on other sites More sharing options...
redarrow Posted May 24, 2007 Share Posted May 24, 2007 simple example ok <?php $img1[]="<img src='http://www.filetransit.com/images/screen/2e2222838cce3a59a31dd04c66521 40b_Animal_Jigsaw_Puzzles.jpg'><img>"; $img1[]="<img src='http://www.hickerphoto.com/data/media/40/funny_animal_picture_T3645.jpg'><img>"; $x=count($img1); foreach($img1 as $images){ if( eregi("\.jpg",$images)) { echo $images; } } echo"Number of images are $x"; ?> Link to comment https://forums.phpfreaks.com/topic/52750-check-page-for-images/#findComment-260543 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.