Like firebug shows ajax request made by javascript is there any similar tool for windows which can show http request made through CURL from PHP while working locally on WAMP ?
Thanks.
|
Like firebug shows ajax request made by javascript is there any similar tool for windows which can show http request made through CURL from PHP while working locally on WAMP ? Thanks. |
|||
|
|
|
http://www.wireshark.org/ or http://www.effetech.com/sniffer/ Also see other answers
Google "HTTP Analyzer", "Protocol Analyzer", "HTTP Sniffer" etc for alternatives. |
|||
|
|
|
Do you want the HTTP headers? If you have curl on windows,
gives you the HTTP headers also. ( the '-' after the '-D' tell it to spit it to stdout (works on *nix, not sure about windows) , you can replace the '-' with a filename eg:
) Or you can look it up on the other side of the universe with Apache access logs (as you are working locally). I dont have Windows here, but you might have to configure it to log, |
|||
|
Fiddler should be able to catch curl too, and it has a quite complete interface. |
|||
|
|