Maison  >  Article  >  développement back-end  >  php使用include加密路径的方法介绍

php使用include加密路径的方法介绍

WBOY
WBOYoriginal
2016-07-25 09:05:461061parcourir
  1. include_once 'include/Base.php';
  2. $path = '';
  3. $url = isBase::decrypt(urlDecode($_SERVER['QUERY_STRING']));
  4. parse_str($url); //获取通过url地址GET传递过来的变量
  5. if(!empty($_POST['path'])){ //获取POST传递过来的变量
  6. $path = $_POST['path'];
  7. $path = isBase::decrypt(urlDecode($path));
  8. }
  9. //解析真实路径
  10. if(empty($path)){
  11. //header("Location: login.php");
  12. exit;
  13. }
  14. if(!preg_match("/(^http:\/)|([?|&|=])/",$path)){
  15. //跳转到实际执行文件的路径
  16. chdir(dirname($path));
  17. include_once basename($path);
  18. exit;
  19. }
  20. ?>
复制代码

index.php与include.inc同目录

  1. include include.inc;
  2. ?>
复制代码

2、修改程序中的链接()

  1. "index.php?".encrypt("path=/test/test.php&test=123&test2=4321")
复制代码

3、修改程序中的POST表单 Form都提交到为 index.php 中间加一个隐藏表单

4、修改前端Html页面的路径 baseref=/test

5、加解密函数,朋友们自己动手写吧。



Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:php-redis中文文档之四 Article suivant:php-redis中文文档之一