常用正则表达式
tally 1年前 (2022-09-19) 165浏览
1、密码复杂度:大小写字母、数字、符号,6-20位 ^(?:(?=.[A-Z])(?=.[a-z])(?=.[0-9])(?=.[!@#\$%\^&*])).{6,20}$ 转载请注明:小码农 » 常用正则表达式...
tally 1年前 (2022-09-19) 165浏览
1、密码复杂度:大小写字母、数字、符号,6-20位 ^(?:(?=.[A-Z])(?=.[a-z])(?=.[0-9])(?=.[!@#\$%\^&*])).{6,20}$ 转载请注明:小码农 » 常用正则表达式...
tally 1年前 (2022-09-13) 176浏览
近日,接到客户系统漏洞通报,centos7.5有openssl高危漏洞,于是升级了一下openssl,过程如下: 1、查看openssl版本:openssl version,看到是1.0.2k 2、下载最新版本的openssl:wget...
tally 1年前 (2022-09-07) 181浏览
1、Uncaught Error: Cannot use assign-op operators with string offsets当使用ajax传输大数据量的时候,如php出现此错误,可使用如下方法解决:A. php.ini 中,修改 #ma...