Home  >  Article  >  Backend Development  >  PHP music collection (part of the code)_PHP tutorial

PHP music collection (part of the code)_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:57:59924browse

set_time_limit(0);
mysql_connect("localhost","root","");
mysql_select_Db("music_36g");

$ip = '127.0.0.1';

function _GetIP() 
{
        $ip  = getenv("REMOTE_ADDR");
        $ip1 = getenv("HTTP_X_FORWARDED_FOR");
        $ip2 = getenv("HTTP_CLIENT_IP");
        ($ip1) ? $ip = $ip1 : null ;
        ($ip2) ? $ip = $ip2 : null ;
        return $ip;
}
function MakePassword($length=10)
{        
        $password = '';
        $chars = 
                array
                (
                        "1","2","3","4","5","6","7","8","9","0",
                        "a","A","b","B","c","C","d","D","e","E","f","F","g","G","h","H","i","I","j","J",
                        "k","K","l","L","m","M","n","N","o","O","p","P","q","Q","r","R","s","S","t","T",
                        "u","U","v","V","w","W","x","X","y","Y","z","Z"
                );

        $count = count($chars) - 1;
        srand((double)microtime()*1000000);

        for($i = 0; $i < $length; $i++)
        {
                $password .= $chars[rand(0, $count)];
        }
        return($password);
}

if ( _GetIP() != $ip ) 
{
        exit("Can't Run!");
}


for ( $i=2;$i<5769;$i++)//52738
{
        $url = "http://music.36g.net/SpecialInfo/showspecial".$i.".htm";

        $File = @fopen($url,'rb');
        if ( $File )
        {
                $makeFile = $buffer = "";
                $buffer = "";
                while ($buffer = fread($File,4096))
                {
                        $makeFile = $makeFile.$buffer;
                }
                                                                                                                          🎜> #Download picture
if ( $pic[1]!='es/Nophoto.gif' )
                                               .$pic [1];

$File2 = fopen($p_url,'rb');
if ($File2)
                                                                       while ($Buffer2 = fread($File2,4096))
                                                                                                                             $Buffer2;
                                            ​
                                  $Filename2 =                                                           fwrite($Fp2,$makeFile2);
fclose( $Fp2);
                                                           $pic[1] =                                                                                                   

preg_match("/Album:(.*)                   $name = addslashes($name[1]); /",$makeFile,$songer);#Singer name
       preg_match("/(.*)/",$ songer[1],$songer_name);#Singer name
preg_match("/Issuing company: (.*)/",$songer[1],$company);#Issuing company

               preg_match("/Release time: (.*) /",$makeFile,$date); .*)/",$date[1],$date2);#Issue time
         preg_match("/(.*)/",$date[1],$ language);#Release language


preg_match("/Album introduction: (.*)< /tr>
/",$makeFile,$descript);#Album Introduction


                                          $ company= addslashes($company[1]);

$descript= addslashes($descript[1]);

#Get song ID
preg_match_all( "/download1.asp? id=(d+)&which=BakDownUrl1/",$makeFile,$id2);#Song ID

$num = count($id2[1]);
for ($jj=0;$ jj<$num;$jj++)
                                                                                                                  $i',specialName= '$name',songerName='$songer_name',orderByID='".$id2[1][$jj]."' ";
                                                 . br> ;br>";

                                                        insert into tx_special set orderByID='$i',specialID='$i',specialName='$name',songerName='$songer_name',company='$company',date='$date2[1]',language ='$language[1]',picture='$pic[1]',musicNum='$num',createDate='".time()."',description='$descript' ";
                      echo $sql;
mysql_query($sql);

}
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/317740.htmlTechArticle?PHP set_time_limit(0); mysql_connect("localhost","root",""); mysql_select_Db("music_36g"); $ip='127.0.0.1'; function_GetIP() { $ip=getenv("REMOTE_ADDR"); $ip1=getenv("HTTP_X_FORWAR...
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