1.中轉程式include.inc
複製程式碼 程式碼如下:
include_once 'include_once 'include/Base. php';
$path = '';
$url = isBase::decrypt(urlDecode($_SERVER['QUERY_STRING']));
parse_str($url); //取得透過url位址GET傳遞過來的變數
if(!empty($_POST['path'])){ //取得POST傳遞過來的變數
$path = $_POST['path'];
$path = isBase::decrypt(urlDecode($path));
}
//解析真實路徑
if(empty($path)){
//header("Location: login.php ");
exit;
}
if(!preg_match("/(^http:/)|([?|&|=])/",$path)){
/ /跳到實際執行檔的路徑
chdir(dirname($path));
include_once basename($path);
exit;
}
?>
複製程式碼 程式碼如下:
include include.inc;
?>
複製程式碼
複製程式碼
程式碼如下:
5、加上解密函數,朋友們自己動手寫。
總結:用這種方法比較繁瑣,只能隱藏後台腳本的路徑,前端的腳本路徑仍然可以在源文件中看得到(baseref) 在地址列上看到的地址都是index. php?xxxxxxxx
以上就介紹了instantiationexception php include的妙用,實現路徑加密,包括了instantiationexception方面的內容,希望對PHP教程有興趣的朋友有所幫助。