摘要:
用户登录系统60分钟后如果没有操作就自动退出 第一种方法即设置php.ini配置文件,设置session.gc_maxlifetime和session.cookie_lifetime节点属性值,当然也可以使用ini_set函数改变当前上下文环境的属性值: 第二种方法即设置Session时间戳,比如下 阅读全文
摘要:
JavaScript JSONPath example | JSON tutorial | w3resource This is an example of JavaScript with JSONPath 阅读全文
摘要:
function js_unescape($str) { $ret = ''; $len = strlen($str); for ($i = 0; $i >6)).chr(0x80|($val&0x3f)); else $ret .= chr(0xe0|($val>>12)).chr(0x80|(($val>>6)&0x3f)).c... 阅读全文
摘要:
ICP( Internet Content Provider):网络内容服务商,即向广大用户综合提供互联网信息业务和增值业务的电信运营商。其必须具备的证书即为ICP证,如运营一个网站,需要进行备案获取网站经营许可证;IDC(Internet Data Center):为互联网内容提供商(ICP)、企 阅读全文
摘要:
zTree = $.fn.zTree.getZTreeObj("treeDemo");//treeDemo界面中加载ztree的div var node = zTree.getNodeByParam("id",pid ); zTree.cancelSelectedNode();//先取消所有的选中状态 zTree.selectNode(node,true);//将指定ID的节点选中 zTree.... 阅读全文
摘要:
REPAIR TABLE TABLENAME 或 REPAIR TABLE TABLENAME USE_FRM 阅读全文
摘要:
function HTMLEncode(html) { var temp = document.createElement("div"); (temp.textContent != null) ? (temp.textContent = html) : (temp.innerText = html); var output = temp.innerHTML; te... 阅读全文
摘要:
"; //获取网页地址 echo $_SERVER['PHP_SELF'].""; //获取网址参数 echo $_SERVER["QUERY_STRING"].""; //获取用户代理 echo $_SERVER['HTTP_REFERER'].""; //获取完整的url echo 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']... 阅读全文
摘要:
if(window.top window.self) {//不存在 } 阅读全文
摘要:
1.apache开启压缩AddOutputFilterByType 找到并打开apache/conf目录中的httpd.conf文件 在httpd.conf中打开deflate_Module,headers_Module,filter_module模块,具体做法为将 如下两句前面的#去掉:LoadM 阅读全文
摘要:
在用phpStudy的时候,在页面中会有一些警告 notice:Undefined variable... notice:Undefined index... 在php.ini里面找到 display_errors = On 改为 display_errors = Off 阅读全文