codecamp

zentaophp框架授权协议

zentaoPHP框架开始的授权协议是LGPL。LGPL协议对大家的使用还是有一些限制的,尤其是对一些商用。所以我们做了一个决定,从2.1版本开始,彻底将zentaoPHP代码的版权捐献出来,以public domain协议发布!简单来讲,任何人或者任何单位可以用ZenTaoPHP框架做任何的使用,而没有任何的限制。包括重新发布,改名,商用,等等。

/**
* The control class file of zentaoPHP framework.
*
* The author disclaims copyright to this source code. In place of
* a legal notice, here is a blessing:
*
* May you do good and not evil.
* May you find forgiveness for yourself and forgive others.
* May you share freely, never taking more than you give.
 */
zentaophp框架的主要功能
zentaoPHP框架系统要求
温馨提示
下载编程狮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; }