Mac 设置文件夹权限为777
1.cd 你的文件夹路径的上一级目录。
2.sudo chmod -R 777 文件夹名
3.输入密码
4.成功
fsockopen(‘主机’,’端口号’,’错误号’,’错误描述’,’连接时限’);
使用命令行模拟get请求
telnet www.test.com 80
ctrl + ]
enter
GET /httpget.php HTTP/1.1
Host: www.test.com
使用PHP模拟get请求
1 | header('content-type:text/html;charset=utf8'); |