gor 流量录制 && php 解析请求

 1. 安装gor

https://github.com/buger/goreplay

下载后直接解压缩即可使用

mac: 下载地址

linux: 下载地址

 2, 使用gor 监听某接口,录制流量

gor --input-raw :22771  --output-file origin_requests_%Y%m%d.log --output-file-append 

 

3,使用PHP 解析请求

保存的内容为:

解析后的内容为

 

<?php
$fp=fopen('./requests_0.log',"r");
$need='';
$line=0;
while(!feof($fp)){
    $content=fgets($fp);
    if(urlencode($content)=='%F0%9F%90%B5%F0%9F%99%88%F0%9F%99%89%0A'){
		$need=$temp;
        $temp='';
    }else{
       $content=trim($content);
        if(strpos($content,":")==false){
             $arr=explode(" ",$content);
		     if($line==0){
			     $temp=$arr[2]."||";
			 }
			 if($line==1){
                 $temp.=$arr[0]."||".$arr[1]."||";
			 }

        }else{
            [$header,$value]=explode(':',$content);
            $temp.=$content."@@";
        }
    }
	$line++;
}
echo $need;

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值