This post was updated 908 days ago and some of the ideas may be out of date.

如 config.php 配置文件设置常量定义

[precode]
<?php
// 如果没有定义 __CONFIG__ 的常量,则不加载此文件
if(!defined('__CONFIG__')) {
exit('你不能配置文件');
}
[/precode]

前端载入 config.php必须定义 __CONFIG__ 的常量
[blockquote1 name='by limo']
define('__CONFIG__', true);         require_once "config.php";
[/blockquote1]