- <? Php
- Function zhuanhuan (){
- $ Urlodd = explode (//, $ _ GET ["url"], 2); // divide the link into 2 segments. // The first segment is followed by the second segment.
- $ Head = strtolower ($ urlodd [0]); // PHP is case sensitive, which is first converted to lowercase. Otherwise, HtTp: or ThUNDER: is not easy to handle.
- $ Behind = $ urlodd [1];
- If ($ head = "thunder :"){
- $ Url = substr (base64_decode ($ behind), 2,-2); // base64 decryption, remove the preceding AA and the following ZZ
- } Elseif ($ head = "flashget :"){
- $ Url1 = explode (&, $ behind, 2 );
- $ Url = substr (base64_decode ($ url1 [0]), 10,-10); // base64 decryption, remove the previous [FLASHGET]
- } Elseif ($ head = "qqdl :"){
- $ Url = base64_decode ($ behind); // base64 decryption
- } Elseif ($ head = "http:" | $ head = "ftp:" | $ head = "mms:" | $ head = "rtsp: "| $ head =" https :"){
- $ Url = $ _ GET ["url"]; // The regular address only supports the http, https, ftp, mms, and rtsp transmission protocols. It seems that few other addresses are supported, A network disk like XX is actually based on base64, but some cannot be downloaded even after decryption.
- } Else {
- Echo "this page does not support this protocol currently ";
- }
- Return $ url;
- }
- If ($ _ GET ["url"]! = NULL ){
- $ Url = zhuanhuan ($ _ GET ["url"]);
- $ Url_thunder = "thunder: //". base64_encode ("AA". $ url. "ZZ"); // base64 encryption, the same is true for the following 2
- $ Url_flashget = "Flashget: //". base64_encode ("[FLASHGET]". $ url. "[FLASHGET]"). "& aiyh ";
- $ Url_qqdl = "qqdl: //". base64_encode ($ url );
- }
- ?>
- <Form action = cs. php method = GET>
- For bkjia.com, enter the normal link or the URL of the fast train or tornado link:
- <Input type = text name = "url" size = "80">
- <Input type = submit value = "Conversion">
- </Form>
- <P> actual address: <a href = "<? Php echo $ url;?> "Target =" _ blank "> <? Php echo $ url;?> </A>
- <P> thunder chain: <a href = "<? Php echo $ url_thunder;?> "Target =" _ blank "> <? Php echo $ url_thunder;?> </A>
- <P> express chain: <a href = "<? Php echo $ url_flashget;?> "Target =" _ blank "> <? Php echo $ url_flashget;?> </A>