Heim >Backend-Entwicklung >PHP-Tutorial >php如何下载css文件中图片

php如何下载css文件中图片

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-25 08:52:26861Durchsuche
  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. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn