Home  >  Article  >  Backend Development  >  How to download images from css files in php

How to download images from css files in php

WBOY
WBOYOriginal
2016-07-25 08:52:26777browse
  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
Statement:
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