怎么防止别人下载或访问PHP配置文件

PHPz
Release: 2020-06-23 10:59:12
Original
1593 people have browsed it

怎么防止别人下载或访问PHP配置文件

防止直接访问、查看或下载config.php文件的方法

防止别人下载或访问你的PHP配置文件?

假如你的配置文件为config.php,其中有访问数据库的用户名和密码,你肯定不想让人看到或下载

这里给出一个解决方法,这也是很多php程序中常用的方法,供大家参考。

1、先 定义标识变量

代码如下:

define('IN_SYS', TRUE);
Copy after login

2、在config.php中获取这变量

代码如下:

if (!defined('IN_SYS')) {
  exit('禁止访问');
}
Copy after login

这样就实现了未经定义的随意查看或下载了。

更多相关技术文章,请访问PHP中文网

Related labels:
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