下载css文件里面背景是我们这些盗版份子长期搞的事情,下载个css图片下载器各种广告弹窗,扛不住,呵呵,写了个水货的php版本的,可以凑合着用下.
把文件放到php程序目录 dos下面 php.exe cssImages.php 0 http://www.phpfensi.com/wp-content/themes/itxti/style.css \images\
先在php程序目录建个images文件夹,呵呵,贴代码:
- <?php
-
-
-
-
-
- set_time_limit(0);
- error_reporting(E_ERROR);
- if($argc<4){
- print_r('
- +-------------------------------------------------+
- Usage: php '.$argv[0].' css路径类型(0为远程、1为本地) css文件路径 图片保存目录
- Example:
- php.exe '.$argv[0].' 0 http:
- +-------------------------------------------------+
- ');
- exit();
- }
-
- if($argv[1]==0){
- $host = getParse($argv[2],'host');
- $savePath = getSavePath($argv[3]);
- $images = getCssImagesArray($argv[2]);
-
- $imagesurls = getImagesLinks($images,$argv[2]);
- imagesDowner($imagesurls);
- }
-
- if($argv[1]==1){
-
- }
-
-
-
-
- function getCssImagesArray($csspath){
- $cssFile = file_get_contents($csspath);
- $images = array();
- preg_match_all("|url\((.+)\)|i",$cssFile,$images);
- $images = $images[1];
- return $images;
- }
-
-
-
-
- function getNocssPath($path){
- global $host;
- $tempLinkmages='';
-
- $tempPath = explode('/',$path);
- for($i=1;$i<(count($tempPath)-2);$i++){
- $tempLinkmages .= $tempPath[$i].'/';
- }
- $xdImage = $host.$tempLinkmages;
- return $xdImage;
-
- }
-
-
-
-
-
-
- function getImagesLinks($imagesArray,$cssLink){
- global $host;
- $urlImages = array();
- foreach($imagesArray as $key=>$value){
- if(pathCheck($value)){
- if((!in_array(($host.$value),$urlImages))){
- $urlImages[$key] = $host.$value;
- }
- }else{
- if((!in_array((getNocssPath(getParse($cssLink,'path')).$value),$urlImages))){
- $urlImages[$key] = getNocssPath(getParse($cssLink,'path')).$value;
- }
- }
- }
- return $urlImages;
- }
-
-
-
-
-
- function imagesDowner($urlImages){
-
- foreach($urlImages as $key=>$value){
- $urlImagesOk[$key] = str_replace('//','/',$value);
- $urlImagesOk[$key] = str_replace('"','',$urlImagesOk[$key]);
- $urlImagesOk[$key] = str_replace("'",'',$urlImagesOk[$key]);
- $urlImagesOk[$key] = 'http://'.$urlImagesOk[$key];
- if(grabImage($urlImagesOk[$key],basename($urlImagesOk[$key]))){
- print_r(
- basename($urlImagesOk[$key]).' 文件下载成功
- ');
- }else{
- print_r(
- basename($urlImagesOk[$key]).' 下载失败
- ');
- }
- }
-
- }
-
-
-
-
-
-
- function pathCheck($imageUrl){
- if(preg_match('|^(\/)|',$imageUrl)){
- return true;
- }else{
- return false;
- }
- }
-
-
-
-
-
-
- function grabImage($url, $filename){
- global $savePath;
- if($url == '') {
- return false;
-
- }
- $ext_name = strrchr($url, '.');
- if($ext_name != '.gif' && $ext_name != '.jpg' && $ext_name != '.bmp' && $ext_name != '.png') {
- return false;
-
- }
- if($filename == '') {
- return false;
-
- }
-
- ob_start();
- if(readfile($url)){
- $img_data = ob_get_contents();
- ob_end_clean();
- $size = strlen($img_data);
- }else{
- ob_end_clean();
- return false;
- }
- if(($local_file = fopen($savePath.$filename , 'a'))&&(fwrite($local_file, $img_data)))
- {
- fclose($local_file);
- return true;
- }
- }
-
-
-
- function getSavePath($savepath){
- $savePath = $savepath;
- $savePath = dirname(__FILE__).$savePath;
- return $savePath;
-
- }
-
-
-
- function getParse($host,$type){
- $baseurl = parse_url($host);
- return $baseurl[$type].'/';
-
-
- }
- ?>
|