- 博客(56)
- 资源 (10)
- 问答 (2)
- 收藏
- 关注
原创 js下载文件、js下载跨域文件
downloadFile('下载文件的路径','1.txt') function download(href, filename = '') { const a = document.createElement('a') a.download = filename a.href = href document.body.appendChild(a) a.click() a.remove() ..
2022-05-25 10:54:27 711
原创 记录微信会员卡开卡跳过领取到卡包直接到激活页面
https://mp.weixin.qq.com/cgi-bin/announce?action=getannouncement&key=1479824356&version=1&lang=zh_CN&platform=2https://mp.weixin.qq.com/cgi-bin/announce?action=getannouncement&key=1479824356&version=1&lang=zh_CN&platform=2
2021-12-07 14:34:49 367
原创 windows子系统 ubuntu 安装 docker
curl https://get.docker.com | sh启动 service docker start
2021-12-02 14:01:30 284
原创 python3爬取壁纸图片,python3切换壁纸
#!/usr/bin/python# encoding=utf-8import requestsfrom bs4 import BeautifulSoupclass bizhi: def getheaders(self): return { "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=.
2021-10-28 17:22:38 186
原创 mysql5.7 主从配置
确保两台mysql服务器都在公网或者同一个局域网中,能够互相访问; 主服务器配置 修改mysql my.cnf配置文件 log-bin=/www/wwwroot/mysqllog #这里要确保mysql的权限能够正常写入 binlog_format=mixed innodb-file-per-table =ON binlog-do-db = 数据库名 #开启的数据库名 skip_name_resolve=ON ser
2021-10-09 09:42:03 208
原创 python Requests cookie自动登录
#!/usr/bin/python# encoding=utf-8import requestsimport pickleimport jsonclass httpMain: session = None def __init__(self): self.session = requests.session() def getHeader(self): return { "Accept": "*/*", .
2021-09-28 09:29:31 433
原创 hyperf访问静态文件
第一步:创建一个中间件第二部:在中间件中写入代码: //静态资源 $currUrl = trim($request->getUri()->getPath(), '/'); $extension = pathinfo($currUrl, PATHINFO_EXTENSION); if (!empty($extension) && $extension !== 'php') {//配置文件可看这里:https://www
2021-06-30 15:00:00 1760
原创 sequelize find_in_set 用法
[Op.where]: this.app.Sequelize.where(this.app.Sequelize.fn('find_in_set',ctx.getUserId(),this.app.Sequelize.col('cooperation_user')),'>',0)
2021-06-18 11:17:27 1205 1
转载 各个银行卡号正则表达式,银行卡信息获取方法
<?phpclass BankHelper{ // 银行列表 public static $banks = [ [ 'name' => '中国邮政储蓄银行', 'code' => 'PSBC', 'patterns' => [ [ 're.
2020-12-14 15:56:57 5571
原创 js常用代码,滚动条在Y轴上的滚动距离,文档的总高度,浏览器视口的高度
let _d = document;let getScrollTop = () => { let bodyScrollTop = 0; let documentScrollTop = 0; if (_d.body) { bodyScrollTop = _d.body.scrollTop; } if (_d.documentElement) { documentScrollTop = _d.documentElement.scr.
2020-12-14 15:06:23 398
原创 一个非常简单的python网络压力测试工具
#!/usr/bin/python#encoding=utf-8import requestsimport threading#保存线程idthreadId=[]def requesd(): #请求url url = "http://www.baidu.com" #携带的参数 payload = { 'type': 1, } #file文件 files = [ ] #请求头 headers = .
2020-12-04 17:53:39 733
原创 php真实可压缩文件夹,2020-11-28实践
$files_path='需要添加进zip包的文件夹目录:/www/wwwroot/';$zipsavepath='打包之后的文件:/www/wwwroot/1.zip';if($zip->open($zipsavepath, \ZipArchive::CREATE | \ZipArchive::OVERWRITE)){ $this->addFileToZip($files_path, $zip); //调用方法,对要打包的根目录进行操作,并将ZipArchive的.
2020-11-28 13:43:37 102
原创 phpexcel下拉框
$objPHPExcel = new \PHPExcel(); //定义配置 $topNumber = 2;//表头有几行占用 $xlsTitle = iconv('utf-8', 'gb2312', $title);//文件名称 $fileName = $title.date('_YmdHis');//文件名称optionsString='1,2,3,4,5,6' $objValidation = $objPHPExcel->setActiveSheetInd.
2020-07-25 11:24:45 607 2
原创 Ubuntu16.04 安装wine,且运行微信开发者工具
sudo dpkg --add-architecture i386 wget -nc https://dl.winehq.org/wine-builds/Release.keysudo apt-key add Release.keysudo add-apt-repository ppa:ubuntu-wine/ppasudo apt-get updatesudo apt-get install wine1.6 winetrickswinecfg以上就是安装wine的过程使用微信开发.
2020-05-15 13:52:32 866
原创 yapi外网部署
upstream xd-project{ #注意 此处的server只能是ip:port不能有任何多余的http或者项目名称 server 127.0.0.1:6552;#端口可以改}server{ listen 80; server_name test.com;#外网访问的域名 index index.php index.html;#这里无所谓的 随便填...
2020-05-08 15:34:13 987
原创 python3 copy文件夹到另一个文件夹,python复制整个文件夹,python复制文件夹到另一个文件夹
#diw 需拷贝的文件夹,newdir是拷贝的地方def copy_die(dir,newdir): for p in os.listdir(dir): print(p) filepath=newdir+'/'+p oldpath=dir+'/'+p if os.path.isdir(oldpath): ...
2020-04-22 13:24:29 4734 3
原创 tp5验证码保存为图片
在做一个验证码识别程序,就打注意到TP上了。php base64保存图片方法function base64_image_content($base64_image_content,$name='',$path='/upload'){ //匹配出图片的格式 $new_file = $path . "/" . date('Ymdh', time()) . "/";...
2019-09-06 09:33:53 644
原创 tp5 phpword操作及phpword中文乱码问题
https://github.com/PHPOffice/PHPWord 里面有安装方式 $templateProcessor =new TemplateProcessor('./a.doc');//导入word模板 //替换写入中文数据 $templateProcessor->setValue('title',iconv('utf-8', 'GB2312//IGNORE...
2019-08-30 14:20:53 715
原创 phpexcel操作
读取EXCEL内容并替换内容if(strrpos($jijiaurl,'xlsx')){ $objReader = \PHPExcel_IOFactory::createReader('Excel2007'); }else{ $objReader = \PHPExcel_IOFactory::createReader('Exce...
2019-08-30 09:52:59 227
原创 layui 流加载筛选数据不显示
layui 流加载筛选数据不显示可以这么做 <div class="commodity"> <ul id="LAY_demo1"> </ul> </div> function getdata(status=1){ //关键代码 把容器下的div移除掉就行了 $('#...
2019-08-16 09:22:34 1209
原创 微信支付回调处理
有几种回调第一种 TP5路由可以直接携带order_num 比如/home/Pay/index/order_num/123456第二种 网页支付回调 这里微信回调发送的消息是xmlphp 处理xml信息 转换为json格式的数据再转为数组 $data = file_get_contents("php://input"); //禁止引用外部x...
2019-05-16 16:58:10 777
原创 php数据库备份与还原
我使用的tp5框架 但是不影响其他框架使用/** * @Purpose: 执行备份 * @Method Name: index * @Param: 参数 * @Author: lxp * @Return: 返回值 */ public function back() { header("Content...
2019-05-15 15:59:53 972
原创 php 自有文章同步微博
微博同步官方教程https://open.weibo.com/wiki/2/statuses/share我觉得写这个文档教程的人是个傻逼~第一步 获取code//访问此方法返回的URL 进行登录微博 拿到codefunction get_wb_code(){ $url="https://api.weibo.com/oauth2/authorize"; $cl...
2019-05-08 11:54:32 475 2
原创 微信小程序录音
begin: function () { var that = this; this.recorderManager = wx.getRecorderManager(); this.recorderManager.onError(function () { wx.showToast({ title: '录音失败', icon:...
2019-03-20 13:44:49 659
原创 js生成二维码并与另一张图片合成一张图片
new QRCode(document.getElementById("qrcode"), "http://www.runoob.com"); let imgurl=""; setTimeout(function () { imgurl=$('#qrcode').children('img')[0].src; //console.log(i...
2019-02-13 10:39:32 3231
原创 TP5微信公众号发送消息通知
public function index(){ $data=[ 'touser'=>'用户openid', 'template_id'=>'模板id', 'url'=>$web_url = "http://".$_SERVER['SERVER_NAME'], 'to...
2019-02-11 14:02:41 2961 5
原创 TP5多图上传,Jq多图片上传加预览,提示信息框使用的layer
<?phppublic function savemoreimg(){ $request = $this->request; if ($request->isPost()) { $param = $request->post('file/a'); if(!is_array($param)) { return ['st'=>1,'msg'=...
2019-01-18 13:38:17 1095 1
ThinkPHP5快速入门
2017-12-19
无限极分类
2017-11-16
支付宝 微信 手机网页 app支付 即时到账
2017-11-16
mysql查询表group by,order by的问题
2023-03-02
扫码枪扫支付宝和微信的付款码怎么知道是那个平台的?
2021-11-25
商城商品排序算法和广告算法
2021-09-27
TA创建的收藏夹 TA关注的收藏夹
TA关注的人