//php获取指定范围内的日期 function periodDate($startDate, $endDate) { $startTime = strtotime($startDate); $endTime = strtotime($endDate); $arr = []; while ($sta ...
分类:
Web程序 时间:
2021-04-23 12:27:28
阅读次数:
0
百度下载QueryList类库文件 /** * 抓取数据源 * @param $rules array 抓取规则 * @param $url string url * @return mixed */ function getQueryList($rules, $url) { $html = fil ...
分类:
Web程序 时间:
2021-04-23 12:26:15
阅读次数:
0
翻译自 https://docs.microsoft.com/en-us/aspnet/core/fundamentals/static-files?view=aspnetcore-5.0 静态文件,例如 HTML, CSS,images 和 JavaScript,都是作为资源文件由 ASP.NET ...
分类:
Web程序 时间:
2021-04-23 12:19:58
阅读次数:
0
1、确认系统版本 cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 2、yum 安装 gcc 相关 yum -y install gcc gcc-c++ 3、卸载旧的版本 yum -y remove docker docker- ...
分类:
其他好文 时间:
2021-04-23 11:54:07
阅读次数:
0
2021-04-21T12:36:52.697398000Z [2021-04-21T12:36:52,696][WARN ][logstash.licensechecker.licensereader] Attempted to resurrect connection to dead ES in ...
分类:
其他好文 时间:
2021-04-22 16:14:06
阅读次数:
0
<?php //index.php 公众号后台配置的路径是这个index.php $wechatObj = new wechat(); $wechatObj->responseMsg(); class wechat { //返回消息模板 private $textTpl = [ 'text' => ...
分类:
微信 时间:
2021-04-22 15:53:55
阅读次数:
0
#!/usr/bin/env python # -*- coding:utf-8 _*- """ @author:zhoutao @file: 金山 V8 终端安全系统 默认弱口令漏洞.py @time: 2021/04/20 @function: """ import requests impor ...
分类:
其他好文 时间:
2021-04-22 15:22:34
阅读次数:
0
PHP环境搭建XAMPP @ 安装XAMPP(服务器搭建) 从官网下载XAMPP,由于一些不可说的的原因,官网下载极慢,届时会分享网盘,下载后安装,一直Next即可,我的安装在D盘 环境变量设置 然后就是必须的环境变量添加,如图把安装路径加入 可能会遇到的问题 Start时的错误,我这里是端口冲突, ...
分类:
Web程序 时间:
2021-04-22 15:14:37
阅读次数:
0
1,查询的基本语法 查询内容:select StudentId,StudentName,Gender -->列名 查询对象:from Students -->表名 过滤条件:where Gender='男' --> 查询条件表达式(可选) 结果排序:order by StudentId DESC - ...
分类:
数据库 时间:
2021-04-21 13:00:33
阅读次数:
0
在项目中用到的是获取文件列表和下载文件,这个是可以的,其他应该也没问题 在对接sftp时必须引用的三个dll文件,可以从newGet包管理里面下载 DiffieHellman Org.Mentalis.Security Tamir.SharpSSH 我们是做了一个exe用sqlserver的job进 ...