在网上碰到一个不错的模板,要做的就是下载它的css文件,不过这其中会有很多图片链接,当然,我们也要下载下来。
图片太多的话,手动下载不方便,这里用php来实现下载css中的图片。
有需要的朋友,拿去咯:
<?php /* * 下载css样式文件中的图片 * edit by www.jb200.com */ //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)); }?>