PHP必备知识:如何下载样式文件中的图片

<?php
header("content-type:text/html;charset=utf-8");
set_time_limit(0);
$styleImg = file_get_contents("http://www.cusabio.com/statics/css/new.css");
// var_dump($styleImg);

preg_match_all("/url\((.*)\)/",$styleImg,$arr);
$aaa = array_unique($arr[1]);
// var_dump($aaa);
foreach($aaa as $img){
// file_put_contents(basename($img),file_get_contents($img));
    echo $img;
    echo '<br/>';
    echo basename($img).'<br/>';
}

?>

posted @ 2016-02-01 16:23  侠岚之弋痕夕  阅读(312)  评论(0编辑  收藏  举报
Where is the starting point, we don't have a choice, but the destination where we can pursue!