Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7584461
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:55:34+00:00 2026-05-30T18:55:34+00:00

Currently, I’m using Simple HTML DOM which works great for tags: $html = file_get_html($url);

  • 0

Currently, I’m using Simple HTML DOM which works great for tags:

    $html = file_get_html($url);
    $images = $html->find('img');
    $result = '';
    foreach ($images as $image):
        $result .= '<img src="'.$this->tasks->rel2abs($image->src, $url).'"><br>';
    endforeach;
    $html->clear(); 
    unset($html);
    echo $result;           

But how would I also get images from CSS files, such as background: or background-image:?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T18:55:35+00:00Added an answer on May 30, 2026 at 6:55 pm

    I assume you’re using PHP Simple HTML DOM Parser. The following code is untested, but it should be pretty close to what you need.

    First, you’ll need to get all of the CSS blocks by using a search similar to yours above.

    $css_inline = $html->find("style");
    $css_external = $html->find("link[rel='stylesheet']");
    

    …then you can search the inline blocks for url():

    $css_images = array();
    
    function extract_css_images ( $css )
    {
        global $css_images;
    
        $matches = array();
        preg_match_all( "/url\((.*?)\)/", $css, $matches, PREG_SET_ORDER );
    
        foreach ( $matches as $match )
        {
            $css_images[] = trim( $match[1], "\"'" );
        }
    }
    
    foreach ($css_inline as $css)
    {
        extract_css_images( $css->save() );
    }
    

    …then fetch the external css files and repeat:

    foreach ($css_external as $css_file)
    {
        $file = $css_file->href;
        $css = file_get_contents($file);        
        extract_css_images( $css );
    }
    

    $css_images should then be filled with image urls. It’s a good idea to run array_unique to eliminate dupes, and you may have to prepend path information if they use relative paths.

    Again, this is untested from memory, but it should get you close. This will not find any images that are inserted via Javascript. That would be a much trickier proposition.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently, I have: <html> <div class=yes1><span><img src=img></span></div> </html> <script> var x = ='yes1' var
Currently I am using a pretty basic function to pre-load images: function preload(arrayOfImages) {
Currently I am using a Html.EditorFor control in a default 'Create' View page like
Currently I'm doing some unit tests which are executed from bash. Unit tests are
Currently, I am developing a product that does fairly intensive calculations using MS SQL
Currently i'm having trouble using two functions in my -(void)viewDidLoad , both of these
Currently I have the following Mapping in my Controller: @RequestMapping( value = /add.html, method
Currently I am using Amazon Cloudfront to service static objects on my ASP.Net MVC3
Currently I have a web service, which loads up any plugins located within its
Currently I'm learning C++ and I've been trying to create a simple image processing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.