商城架构二
index.php: <?php /* 以后所有由用户直接访问到的这些页面 都得先加载init.php */ require('./include/init.php'); $conf = conf::getIns(); var_dump($conf); ?> include/config.inc.php: <?php /* file.config.inc.php 配置文件 */ $_CFG = array(); $_CFG['host'] = '127.0.0.1'; $_CFG['user'] = 'root'; $_CFG['pwd'] = '111111'; ?> include/conf.class.php: <?php /* file conf.class.php 配置文件读取类 */ class conf{ protected static $ins = null; protected $data = array(); final protected function __construct(){ //一次性把配置文件信息读过来赋给...


