Home  >  Article  >  php教程  >  php collects beautiful pictures from a website

php collects beautiful pictures from a website

大家讲道理
大家讲道理Original
2016-11-09 09:17:481511browse

<?php
header("Content-type:text/html;charset=utf-8");
function GrabImage($url,$filename="") {
if($url==""):return false;endif;
if($filename=="") {
$ext=strrchr($url,".");
if($ext!=".gif" && $ext!=".jpg"):return false;endif;
$filename=date("dMYHis").$ext;
}
ob_start();
readfile($url);
$img = ob_get_contents();
ob_end_clean();
$size = strlen($img);
$fp2=@fopen($filename, "w+");
fwrite($fp2,$img);
fclose($fp2);
return $filename;
}
 
 
for($i=1;$i<8;$i++){
$url="http://www.topit.me/popular/20120420?p=".$i;
echo $url;
$file=file_get_contents($url);
 
$preg=&#39;/(.*)<div class="e">(.*)<\/div>(.*)/isU&#39;;
preg_match_all($preg,$file,$string);
set_time_limit(0);
 
foreach($string[2] as $key=>$value){
    //echo $value;
    $pattern_src = &#39;/href="(.*)"><img class="img" title="(.*)"/isU&#39;;
    preg_match_all($pattern_src,$value,$str);
    print_r($str."<br/>");
 
    $img=GrabImage($str[1][0],"","");
 
    if($img){
        echo &#39;sucess&#39;;
    }else{
        echo "false";
    }
}
 
}
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Copy Move Files - PHPNext article:Copy Move Files - PHP