I have a page written in JSP
(that I don't know) that I need to understand and analyse whether the page can be written in another format (PHP/ASP etc).
I came across the following in the file:
BufferedReader myRequest = new BufferedReader(new InputStreamReader(request.getInputStream(),"UTF-8"))
After searching I believe the getInputStream
method is reading the request body of the request in binary format.
If that's correct, is this possible too in PHP?
Thanks.