-
- if (!is_dir('img')) { mkdir('img'); }
复制代码
> 3、用正则式把图片相对地址取出来:
-
- if (preg_match('/^http.*/',$val)) { $target = $val; }
- else if (preg_match('/^\/.*/',$val)) { $target=$host.$val; }
- else { $target=$url.$val; }
- echo $target."
\r\n";
复制代码
> 最后把文件名取出来,即 /img/1.gif 中的 1.gif,用于保存文件。
-
- if (!is_file('./img/'.$name[1])) {
- $imgc = file_get_contents($target);
- $handle = fopen('./img/'.$name[1],'w+');
- fwrite($handle,$imgc);
- fclose($handle);
- }
复制代码
>某次,小邪突然发现 Copy 的强大。
> Copy 居然也可以下载,所以可以轻松使用下面的代码来处理,上面的可以退休鸟。
-
- if (!is_file('./img/'.$name[1])) {
- copy($target,'./img/'.$name[1]);
- }
复制代码
5、完整源代码:
使用时把 $url 填好即可,然后把所有 CSS 内容存到 abc.css 中即可。
-
-
$url = 'http://bbs.it-home.org/css/';
- $data = file_get_contents('abc.css');
- preg_match('/(.*\/\/.*?)\//',$url,$host);
- $host = $host[1];
- if (!is_dir('img')) { mkdir('img'); }
- $regex = '/url\(\'{0,1}\"{0,1}(.*?)\'{0,1}\"{0,1}\)/';
- preg_match_all($regex,$data,$result);
- foreach ($result[1] as $val) {
- if (preg_match('/^http.*/',$val)) { $target = $val; }
- else if (preg_match('/^\/.*/',$val)) { $target=$host.$val; }
- else { $target=$url.$val; }
- echo $target."
\r\n";
- preg_match('/.*\/(.*\.\D+)$/',$val,$name);
- if (!is_file('./img/'.$name[1])) {
- copy($target,'./img/'.$name[1]);
- }
- }?>
复制代码
|