摘要: 2021.9.27==引入 (未分装,直接引用) 项目实践:只引用关键步骤,定时执行(间隔1分钟),目的是为了协程实现接口监控报警 import jsonschema from jsonschema import validate, draft7_format_checker from jsonsc 阅读全文
posted @ 2021-09-27 14:16 再一次我愿丢弃所有 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 直接上代码 html中: js中修改数据、路径及排版就行: 阅读全文
posted @ 2019-10-12 17:29 再一次我愿丢弃所有 阅读(725) 评论(0) 推荐(0) 编辑
摘要: 此行为防止非法用户暴力破解密码对用户进行登录限制,其实nginx也可进行ip访问限制 方法一: 直接上代码吧 <!--防爆刷登录页--><?php /* *通过禁止IP频繁访问防止网站被防攻击代码 *design by www.scutephp.com */header('Content-type: 阅读全文
posted @ 2019-10-10 10:42 再一次我愿丢弃所有 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: password=‘123456’;//明文密码,前端可以看到 阅读全文
posted @ 2019-10-10 10:32 再一次我愿丢弃所有 阅读(876) 评论(0) 推荐(0) 编辑
摘要: 1、主从服务器分别作以下操作: 1.1、版本一致 1.2、初始化表,并在后台启动mysql 1.3、修改root的密码 )、授权给从数据库服务器 mysql>GRANT REPLICATION SLAVE ON *.* to 'root'@'192.168.8.11' identified by ' 阅读全文
posted @ 2019-04-15 18:39 再一次我愿丢弃所有 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 对浏览器来说,使用 Web Storage 存储键值对比存储 Cookie 方式更直观,而且容量更大,它包含两种:localStorage 和 sessionStorage sessionStorage(临时存储) :为每一个数据源维持一个存储区域,在浏览器打开期间存在,包括页面重新加载 local 阅读全文
posted @ 2018-05-30 14:14 再一次我愿丢弃所有 阅读(4391) 评论(0) 推荐(0) 编辑
摘要: 触摸事件中touchstar、touchmove、touchend、touchcancel事件应用方法及实例 触摸事件中touchstar、touchmove、touchend、touchcancel事件应用方法及实例 一、 分享到: 分享到: 前面我们介绍过移动设备中一些设备事件,例如手机旋转90 阅读全文
posted @ 2017-08-08 09:22 再一次我愿丢弃所有 阅读(15805) 评论(0) 推荐(0) 编辑
摘要: linux centos yum安装LAMP环境 linux centos yum安装LAMP环境 首先更新一下yum -y update 用yum安装Apache,Mysql,PHP. 安装Apache yum install httpd httpd-devel 安装完成后,用/etc/init. 阅读全文
posted @ 2017-06-14 14:59 再一次我愿丢弃所有 阅读(131) 评论(0) 推荐(0) 编辑
摘要: $count = M('recharge')->where($map)->count();$page = new Page($count);$lists = M('recharge')->where($map)->order('ctime desc')->limit($page->firstRow. 阅读全文
posted @ 2017-06-06 16:56 再一次我愿丢弃所有 阅读(351) 评论(0) 推荐(0) 编辑
摘要: public function export_user(){ $strTable ='<table width="500" border="1">'; $strTable .= '<tr>'; $strTable .= '<td style="text-align:center;font-size: 阅读全文
posted @ 2017-06-06 14:15 再一次我愿丢弃所有 阅读(211) 评论(0) 推荐(0) 编辑