Obtain the real address of Baidu Netdisk files through regular expressions to achieve a direct link effect, which is suitable for some websites that use external links.
/i'; preg_match_all($pattern,$file,$result); $tempurl=implode("",$result[1]); $fileurlt=str_replace(""","",$tempurl); $fileurl=str_replace("&","&",$fileurlt); header("location:$fileurl"); } ?>
Such as the effect:
http://www.bkjia.com/PHPjc/371957.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/371957.htmlTechArticleGet the real file address of Baidu Netdisk through regular expressions to achieve a direct link effect, which is suitable for some external users Chain website use. ?php $canshu=$_SERVER[QUERY_STRING]; if($canshu...