摘要: select gid, username from users where FIND_IN_SET(8,gid); //查询gid里含有数字8的记录,gid是varchar ,数据格式:"1,12,8,18,5" select gid, username from users where !FIND 阅读全文
posted @ 2020-04-06 15:33 Ai~低调 阅读(15456) 评论(0) 推荐(0) 编辑
摘要: 使用date -d 选项: date +"%Y%m%d" -d "+n days" 今天的后n天日期 date +"%Y%m%d" -d "-n days" 今天的前n天日期 比如: [root@localhost riqi]# date +"%Y-%m-%d %H:%M:%S" 2012-07-1 阅读全文
posted @ 2020-04-01 10:40 Ai~低调 阅读(1318) 评论(0) 推荐(0) 编辑
摘要: 一般出现这种情况,只要重新修改下root密码 解决方法:1.打开/etc/mysql/debian.cnf文件,里面存储了系统管理员的密码 2. 输入命令: mysql -udebian-sys-maint -p 再输入对应debian.cnf里对应的密码,以管理员身份进去 3.进入控制台后.按以下 阅读全文
posted @ 2020-03-30 21:57 Ai~低调 阅读(1949) 评论(0) 推荐(0) 编辑
摘要: 步骤一:修改php.ini配置中session的过期时间。 session.gc_maxlifetime = 1440 //改为 session.gc_maxlifetime = 14400 步骤二:修改phpMyAdmin配置中session的过期时间。 找到 phpMyAdmin/librari 阅读全文
posted @ 2020-03-30 18:05 Ai~低调 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 前端代码: <div class="layui-form-item"> <label class="layui-form-label">状态</label> <div class="layui-input-block"> <input type="radio" name="status" value 阅读全文
posted @ 2020-03-30 16:33 Ai~低调 阅读(2926) 评论(0) 推荐(0) 编辑
摘要: 例子:sh脚本#!/bin/shdate2=$(date +%Y-%m-%d)' '$(date +%H:%M:%S)echo 'date2:'$date2打印出的结果是:date2:2012-11-22 14:34:32 原文:https://www.iteye.com/blog/jinnaxu- 阅读全文
posted @ 2020-03-29 20:43 Ai~低调 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 1.问题描述: 在linux服务器使用composer 安装插件时,出现“proc_open(): fork failed - Cannot allocate memory” 也就是提示“提示内存不足”,我们可以通过创建swap分区解决这个问题。 2.解决方法: 先运行 free -m 看下空间是多 阅读全文
posted @ 2020-03-27 11:52 Ai~低调 阅读(693) 评论(0) 推荐(0) 编辑
摘要: jquery中的ajax方法参数总是记不住,这里记录一下。 1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分 阅读全文
posted @ 2020-03-26 11:05 Ai~低调 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 错误详情: # m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf *** ERROR: FEATURE() should be before MAILER() *** MAILER(`local') must appear after FEATURE( 阅读全文
posted @ 2020-03-13 21:58 Ai~低调 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 这里是Ubuntu 18.04的mysql安装教程,ubuntu低版本或其他非Debian的Linux发行版可能不适用。 安装mysql sudo apt-get install mysql-server sudo apt-get install mysql-client sudo apt-get 阅读全文
posted @ 2020-03-13 12:41 Ai~低调 阅读(693) 评论(0) 推荐(0) 编辑