首页 > Web开发 > 详细

thinkphp5动态永久修改config.php配置

时间:2020-03-01 23:12:01      阅读:87      评论:0      收藏:0      [点我收藏+]
/**
 * 修改config的函数
 * @param $arr1 配置前缀
 * @param $arr2 数据变量
 * @return bool 返回状态
 */
function setconfig($pat, $rep)
{
    /**
     * 原理就是 打开config配置文件 然后使用正则查找替换 然后在保存文件.
     * 传递的参数为2个数组 前面的为配置 后面的为数值.  正则的匹配为单引号  如果你的是分号 请自行修改为分号
     * $pat[0] = 参数前缀;  例:   default_return_type
       $rep[0] = 要替换的内容;    例:  json
     */
    if (is_array($pat) and is_array($rep)) {
        for ($i = 0; $i < count($pat); $i++) {
            $pats[$i] = ‘/\‘‘ . $pat[$i] . ‘\‘(.*?),/‘;
            $reps[$i] = "‘". $pat[$i]. "‘". "=>" . "‘".$rep[$i] ."‘,";
        }
        $fileurl = APP_PATH . "config.php";
        $string = file_get_contents($fileurl); //加载配置文件
        $string = preg_replace($pats, $reps, $string); // 正则查找然后替换
        file_put_contents($fileurl, $string); // 写入配置文件
        return true;
    } else {
        return flase;
    }
}

 

 

原文地址:http://www.thinkphp.cn/code/4054.html

thinkphp5动态永久修改config.php配置

原文:https://www.cnblogs.com/ysbl/p/12392459.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!