Jump to content

Check Page For Images


leon_king

Recommended Posts

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

 

 

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.