欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php如何下载css文件中图片

程序员文章站 2023-12-22 11:51:16
...
  1. //note 设置php超时时间

  2. set_time_limit(0);
  3. //note 取得样式文件内容

  4. $stylefilecontent = file_get_contents('images/style.css');
  5. //note 匹配出需要下载的url地址

  6. preg_match_all("/url\((.*)\)/", $stylefilecontent, $imagesurlarray);
  7. //note 循环需要下载的地址,逐个下载

  8. $imagesurlarray = array_unique($imagesurlarray[1]);
  9. foreach ($imagesurlarray as $imagesurl) {
  10. file_put_contents(basename($imagesurl), file_get_contents($imagesurl));
  11. }
  12. ?>
复制代码

上一篇:

下一篇: