Home > Backend Development > PHP Tutorial > http - php,curl如何查看发出的post请求的信息

http - php,curl如何查看发出的post请求的信息

WBOY
Release: 2016-06-06 20:18:21
Original
3400 people have browsed it

php,使用curl发送post请求,如何查看发出的post请求参数的信息,有没有除了抓包之外的方法。

回复内容:

php,使用curl发送post请求,如何查看发出的post请求参数的信息,有没有除了抓包之外的方法。

写到日志里面,发送成功,查看日志,


如果要获取curl的各种参数,可以使用下面函数。

<code>$information = curl_getinfo($curl);</code>
Copy after login

官方文档
http://php.net/manual/en/function.curl-getinfo.php


如果要获取post的数据,可以直接将传输的数据 var_dump 到日志即可。


如果要区分php形式的数据,和http形式的数据的在传输过程中的不同,只能使用抓包工具。

写日志文件,然后 “tail -f 文件名” 保持时刻监控

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template