摘要:
Mysql:https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.36-linux-glibc2.5-x86_64.tar.gz php:http://cn2.php.net/distributions/php-7.1.6.tar.gz re 阅读全文
摘要:
分析过程 分析过程 这个来自一些项目中,获取用户Ip,进行用户操作行为的记录,是常见并且经常使用的。 一般朋友,都会看到如下通用获取IP地址方法。 这个是网上常见获取,ip函数,用这些值获取IP,我们首先要弄清楚,这些数据是从那个地方传过来的。 IP获取来源 IP获取来源 1.’REMOTE_ADD 阅读全文
摘要:
<?php class person{ public $name="王美人"; public $age = 25; public $birth; } $p = new person(); print_r(get_object_vars($p)); ?> <?php class person{ pub 阅读全文
摘要:
"; */ // 利用淘宝接口根据ip查询所在区域信息 $res1 = file_get_contents("http://ip.taobao.com/service/getIpInfo.php?ip=$ip"); $res1 = json_decode($res1); /* print_r($res1); */ 如何读取数据, 看下面。 复制代码 代码如下: $arr... 阅读全文
摘要:
Windows redis :https://github.com/MSOpenTech/redis/releases Linux redis :https://github.com/phpredis/phpredis 打开一个 cmd 窗口 使用cd命令切换目录到 C:\redis 运行 redi 阅读全文
摘要:
[intrinsic column flags] (基本字段类型标识) - PK: primary key (column is part of a pk) 主键 - NN: not null (column is nullable) 非空 - UQ: unique (column is part 阅读全文
摘要:
网址:http://www.awaimai.com/128.html 阅读全文
摘要:
在php中开启与关闭错误提示的方法有几种一种可以直接在程序中使用相关函数来开户,另一种我们可以使用php.ini中配置参数来控制,下面小编来给各位同学介绍一下。 windows系统开关php错误提示 如果不具备修改php.ini的权限,可以将如下代码加入php文件中: ini_set("displa 阅读全文
摘要:
TCP/IP协议三次握手与四次握手流程解析 一、TCP报文格式 TCP/IP协议的详细信息参看《TCP/IP协议详解》三卷本。下面是TCP报文格式图:图1 TCP报文格式 上图中有几个字段需要重点介绍下: (1)序号:Seq序号,占32位,用来标识从TCP源端向目的端发送的字节流,发起方发送数据时对 阅读全文
摘要:
[root@wang /]# iptables -t filter -nvL [root@wang /]# iptables -t nat -nvL [root@wang /]# filter INPUT OUTPUT 用的最多^C[root@wang /]# iptables -t filter 阅读全文