//note 设置php超时时间 set_time_limit(0); //note 取得样式文件内容 $stylefilecontent = file_get_contents('images/style.css'); //note 匹配出需要下载的url地址 preg_match_all("/url((.*))/", $stylefilecontent, $imagesurlarray); //note 循环需要下载的地址,逐个下载 $imagesurlarray = array_unique($imagesurlarray[1]); foreach ($imagesurlarray as $imagesurl) { file_put_contents(basename($imagesurl), file_get_contents($imagesurl)); } ?> 复制代码