How to download images from css files in php

WBOY
Release: 2016-07-25 08:52:26
Original
802 people have browsed it
  1. //note Set php timeout

  2. set_time_limit(0);

  3. //note Get style file content

  4. $stylefilecontent = file_get_contents ('images/style.css');

  5. //note Match the url address that needs to be downloaded

  6. preg_match_all("/url((.*))/", $stylefilecontent, $imagesurlarray );

    ($imagesurl), file_get_contents($imagesurl));
  7. }
  8. ?>

  9. Copy code
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!