摘要:
public function test() { $count = []; $count[] = ['key' => 'name', 'type' => 'string', 'len' => 50]; $count[] = ['key' => 'title', 'type' => 'string', 阅读全文
摘要:
public function test() { $count = []; $count[] = ['key' => 'name', 'type' => 'string', 'len' => 50]; $count[] = ['key' => 'title', 'type' => 'string', 阅读全文
摘要:
client.html: <!doctype html><html><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/ 阅读全文
摘要:
一、crond简介 crond是linux下用来周期性的执行某种任务或等待处理某些事件的一个守护进程,与windows下的计划任务类似,当安装完成操作系统后,默认会安装此服务工具,并且会自动启动crond进程,crond进程每分钟会定期检查是否有要执行的任务,如果有要执行的任务,则自动执行该任务。 阅读全文
摘要:
[root@localhost etc]# type home --检查是否占用-bash: type: home: not found[root@localhost etc]# alias home='cd /home/wwwroot;ll' --创建命令[root@localhost etc]# 阅读全文
摘要:
临时设置:即重启后就失效 查询防火墙状态: service iptables status 停止防火墙: service iptables stop 启动防火墙: service iptables start 重启防火墙: service iptables restart 保存防火墙设置: serv 阅读全文
摘要:
Redis安装 1,安装redis cd wget http://download.redis.io/releases/redis-3.0.5.tar.gz tar -zxvf redis-3.0.5.tar.gz cd redis-3.0.5 make cd src make install PR 阅读全文
|