I'm trying to access the raw HTTP request sent to the server in PHP.
However, all the input/output streams are not working.
I can't use php://input
, and I don't want to have to "interpolate" the request from the arrays such as $_COOKIES, $_POST
, etc. $_POST, $_GET
and the other arrays are working fine. I'm using WAMPServer on Windows 7.
Can anyone help me fix the problem with the input/output streams or find another way to get the raw request data?