codecamp

database 配置说明

数据库配置说明

return[
    //单独实例配置 默认 default
    'default'=>[
        //实例驱动 默认 mysql
        'driver'    => 'mysql',
        //主机地址
        'host'      => 'localhost',
        //数据库
        'database'  => 'test',
        //用户名
        'username'  => 'root',
        //密码
        'password'  => 'root',
        //端口
        'port'      => 3306,
        //字符集
        'charset'   => 'utf8',
        //表前缀
        'prefix'    => ''
    ]
];

coffee db驱动 支持随时切库,多库并存,多实例配置。

config 配置说明
cache 配置说明
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

应用

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }