yum install lrzsz
rz:从本地上传文件至服务器
sz filename:从服务器下载文件至本地
yum install lrzsz
rz:从本地上传文件至服务器
sz filename:从服务器下载文件至本地
html 文件
<a href="http://www.baidu.com" id='alipaybtn'>jquery点我</a>
jQuery 代码
var goPay = '<span id="goPay"> <span>';
//给A标签中的文字添加一个能被jQuery捕获的元素
$('#alipaybtn').append(goPay);
//模拟点击A标签中的文字
$('#goPay').click();

vim /etc/systemd/system/seafile.service
Continue reading Seafile 6.3.4 开机启动 CentOS 7 fio --bs=4k --ioengine=libaio --iodepth=1 --direct=1 --rw=read --time_based --runtime=600 --refill_buffers --norandommap --randrepeat=0 --group_reporting --name=fio-read --size=100G --filename=/dev/vda1

修改配置文件
vim /etc/ssh/sshd_config
//1.关闭ssh DNS反向解析
UseDNS no
//2.关闭 GSSAPI 的用户认证
GSSAPIAuthentication no

比如腾讯云……
商品有三种价格 8,59,68,卖出不多于10件商品,可以卖出多少种方式
<?php
$a = [8,59,68];
function getList($array,$count,$index = 0,$up =0)
{
static $result = [];
for ($i=$index; $i < $count; $i++) {
foreach($array as $k => $v){
$value = $up?$up.'+'.$v:$v;
$result[] = $value;
getList($array,$count,$i+1,$value);
}
}
return $result ;
}
var_export(getList($a,10));
结果是 3^10 次方种
//生成小程序码
public function wx_code($path){
$appid = 'wxf0000000000000000';
$secret = '0a4a0000000000000000000000000';
$token_url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$appid}&secret={$secret}";
$access = file_get_contents($token_url);
$access = json_decode($access,true);
$access_token = $access['access_token'];
// 配置参数
$url = "https://api.weixin.qq.com/wxa/getwxacode?access_token={$access_token}";
$method = 'POST';
$body = array('path'=>$path);
$headers = array('Content-Type:'.'application/json');
// 创建连接
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($body));
curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,FALSE);//严格校验
// 发送请求
$response = curl_exec($curl);
curl_close($curl);
$src = 'data:image/jpeg;base64,' . base64_encode($response);
echo "<img src='{$src}'>";
}
请尝试重新登录,并确保允许备份与同步访问您的帐号。

可尝试将 ss 系统代理模式修改为全局模式
