PHPCMS 配置文件

6 篇文章 0 订阅

PHPCMS配置文件路径:

数据库配置文件位置:caches/configs/database.php

路由配置文件位置:caches/configs/route.php

系统配置文件位置:caches/configs/system.php

。。。。。。


PHPCMS调用配置文件方法:

配置文件配置在caches/configs/目录下。

配置文件调用:使用 load_config方法(该方法位于 base.php 文件中)

/**
                  * 加载配置文件
                  * @param string $file 配置文件
                  * @param string $key  要获取的配置荐
                  * @param string $default  默认配置。当获取配置项目失败时该值发生作用。
                  * @param boolean $reload 强制重新加载。
                  */
                 public static function load_config($file, $key = '', $default = '', $reload = false) {
                    static $configs = array();
                    if (!$reload && isset($configs[$file])) {
                       if (empty($key)) {
                         return $configs[$file];
                       } elseif (isset($configs[$file][$key])) {
                         return $configs[$file][$key];
                       } else {
                         return $default;
                       }
                    }
                   $path = CACHE_PATH.'configs'.DIRECTORY_SEPARATOR.$file.'.php';
                   if (file_exists($path)) {
                     $configs[$file] = include $path;
                   }
                   if (empty($key)) {
                     return $configs[$file];
                   } elseif (isset($configs[$file][$key])) {
                     return $configs[$file][$key];
                   } else {
                     return $default;
                   }
                 }


示例:

调用系统配置中的附件路径

$upload_url = pc_base::load_config('system','upload_url');

pc_base::load_config('route', SITE_URL)

pc_base::load_config('database');

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值