摘要:
切换到拥有sudo权限的用户下。 输入命令"sudo vim /etc/sudoers"开始编辑/etc/sudoers文件。 找到"root ALL=(ALL) ALL"这一 行,在它下面添加"xxx ALL=(ALL) ALL"(这里的xxx是需要添加sudo权限的用户名),然后保存退出。因为是 阅读全文
摘要:
public $bonus;//红包 public $bonusNum;//红包个数 public $bonusMoney;//红包总金额 public $moneySingleMax;//单个红包最大限制 public $moneySingleMin;//单个红包最小限制 /** * redPackageService constructor. * @param int $bonusNum * 阅读全文
摘要:
来源:https://www.cnblogs.com/tssc/p/10255590.html 目录 0.CGI的引入 1.关于CGI 1.1.什么是CGI? 1.2.CGI程序的工作原理 1.3.CGI程序的特点 1.4.CGI程序的应用领域 2.关于FastCGI 2.1.什么是FastCGI? 阅读全文
摘要:
来源: https://blog.csdn.net/99guo/article/details/50635111 阅读全文
摘要:
$dialModel = new dialModel(); $dialTable = $dialModel->order('num desc')->buildSql();//先排序 $list = $dialModel->table($dialTable .'as d') ->join(AMem::tableName('m'), 'd.user_id=m.id') ->field... 阅读全文
摘要:
1、添加水印,添加.ico图片水印会报错 2、添加文字水印,fontAwesome.otf、fontawesome-webfont.ttf会乱码;simkai.ttf可用 阅读全文
摘要:
<input type="number" onkeyup="this.value=this.value.replace(/\D/g,'')"> 阅读全文
摘要:
$("#start_time").datetimepicker({ format: 'hh:ii', startView: 0, autoclose: true, language: 'zh-CN', }).on('click', function (ev) { var startTime = "{$data.start_time}"; //10位数的时间戳 if (startTime > 0) 阅读全文
摘要:
来源:https://blog.csdn.net/NET_class/article/details/88745807 阅读全文
摘要:
php获取前一个小时的时间: $mtime= date("Y-m-d H:i:s", strtotime("-1 hour")); php获取前一天的时间: $mtime= date("Y-m-d H:i:s", strtotime("-1 day")); php获取三天前的时间: $mtime= 阅读全文