Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.