httpful POST请求:获取原始HTTP消息

时间:2019-10-23 07:18:28

标签: php http httpful

我使用httpful发布消息:

try
{
    $ret = \Httpful\Request::post($url)
            ->addHeaders(array(
                'Content-Type' => 'application/x-www-form-urlencoded'
            ))
            ->body("mystring=".urlencode($msg))
            ->send();
} catch (Exception $e)
{
    trigger_error("Exception :".$e->getMessage()."\n");
}

另一端的系统无法读取它,也无法发出调试信息-如何获得实际发送的原始HTTP消息(包括标头,分隔符等)?

0 个答案:

没有答案