Home > Backend Development > PHP Tutorial > How to download QQ Tornado offline PHP Thunder, Express, Tornado download dedicated chain conversion code

How to download QQ Tornado offline PHP Thunder, Express, Tornado download dedicated chain conversion code

WBOY
Release: 2016-07-29 08:43:00
Original
1316 people have browsed it

Copy the code and save it as cs.php. If you want to save it as another name, please modify the line


Copy the code The code is as follows:


< ;?php
function zhuanhuan() {
$urlodd=explode('//',$_GET["url"],2);//Divide the link into 2 paragraphs, //The first paragraph is in front, and the following one is Second paragraph
$head=strtolower($urlodd[0]);//PHP is case-sensitive, convert it to lowercase first, otherwise HtTp: or ThUNDER: will appear. This weird writing method is difficult to deal with
$behind=$ urlodd[1];
if($head=="thunder:"){
$url=substr(base64_decode($behind), 2, -2);//base64 decryption, remove the AA in front and ZZ in the back
}
elseif($head=="flashget:"){
$url1=explode('&',$behind,2);
$url=substr(base64_decode($url1[0]), 10, -10); //base64 decryption, remove the [FLASHGET] before and after
}
elseif($head=="qqdl:"){
$url=base64_decode($behind);//base64 decryption
}
elseif($head== "http:"||$head=="ftp:"||$head=="mms:"||$head=="rtsp:"||$head=="https:"){
$url= $_GET["url"];//Regular addresses only support http, https, ftp, mms, and rtsp transmission protocols. There seem to be very few other places. For example, XX network disk is actually based on base64, but some cannot be downloaded even if they are decrypted.
}
else {echo "This page does not support this protocol temporarily";}
return $url;
}
if($_GET["url"]!=NULL){
$url=zhuanhuan($_GET["url "]);
$url_thunder="thunder://".base64_encode("AA".$url."ZZ");//base64 encryption, the same as 2 below
$url_flashget="Flashget://". base64_encode("[FLASHGET]".$url."[FLASHGET]")."&aiyh";
$url_qqdl="qqdl://".base64_encode($url);}
?>
Please enter a normal link or Thunder, Express, or Tornado link address:


Actual address:

Thunder Link:

Express chain:

Cyclone chain:< ;/a>

The above introduces how to download qq whirlwind offline. PHP Thunder, Express, and Cyclone download special chain conversion code, including the content of how to download qq whirlwind offline. I hope it will be helpful to friends who are interested in PHP tutorials.

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template