摘要: // 密码验证 jQuery.validator.addMethod("passwordgCheck", function(value, element) { return this.optional(element) || /(?!^[0-9]+$)(?!^[a-z]+$)(?!^[A-Z]+$) 阅读全文
posted @ 2020-11-26 20:24 Double330 阅读(5969) 评论(0) 推荐(0) 编辑
摘要: CREATE FUNCTION `getSecurityTemplate`(uuid INT) RETURNS text CHARSET utf8 BEGIN DECLARE sTemp text; DECLARE sTempChd text; SET sTemp = ''; SET sTempCh 阅读全文
posted @ 2020-08-01 16:10 Double330 阅读(179) 评论(0) 推荐(0) 编辑
摘要: new static() 是php 5.3添加的延迟静态绑定(后期延迟绑定)功能。 它和 new self() 的相同点在于都是用来实例化一个类, 但 new self() 是实例化代码声明时所在的类, 而 new static() 是实例化调用时所在的类。 事例: class A{ public 阅读全文
posted @ 2020-07-06 14:56 Double330 阅读(228) 评论(0) 推荐(0) 编辑
摘要: @media only screen and (min-width: 320px){ html { font-size: 62.5% !important; }}@media only screen and (min-width: 640px){ html { font-size: 125% !im 阅读全文
posted @ 2020-06-11 15:15 Double330 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 一、基本环境1、centos7_64+Apache/2.4.43+PHP5.62、安装了宝塔面板二、安装oci8扩展1、到oracle官网下载:oracle-instantclient11.2-basic-11.2.0.4.0-1.x86_64.rpmoracle-instantclient11.2 阅读全文
posted @ 2020-05-26 10:59 Double330 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 1.创建oracle系统的用户和用户组 groupadd oinstall #创建用户组oinstallgroupadd dba #创建用户组dbauseradd -g oinstall -g dba -m oracle #创建oracle用户,并加入到oinstall和dba用户组groups o 阅读全文
posted @ 2020-05-26 10:00 Double330 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-25 10:09 Double330 阅读(170) 评论(0) 推荐(0) 编辑
摘要: frps.ini bind_port = 7000vhost_http_port = 53390 frpc.ini [common]server_addr = xxx.xxx.xxx.xxxserver_port = 7000[web]type = http# 本地http服务地址local_ip 阅读全文
posted @ 2020-05-19 16:16 Double330 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-19 16:09 Double330 阅读(1548) 评论(0) 推荐(0) 编辑
摘要: Centos 7 firewall 1、 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : systemctl disable firewalld 开机 阅读全文
posted @ 2020-05-19 16:02 Double330 阅读(169) 评论(0) 推荐(0) 编辑