Answer the question
In order to leave comments, you need to log in
How to process data stream in PHP?
I am developing an application for Windows Phone on WinJS and it became necessary to upload a file (image or video) to the PHP server, since the application is a site client.
The only API for uploading files to the server in Windows Phone passes the file name through the headers header, you can get it like this:
$headersCont = apache_request_headers();
$headersCont[Filename] - имя файла
$hSource = fopen('php://input', 'r');
echo $hSource;
Answer the question
In order to leave comments, you need to log in
fopen opens the handle for reading/writing and declares the resource
__DIR__ the current folder where the script is
// читаем
$rawData = file_get_contents("php://input");
// пишем
$pathUploadDir = __DIR__ . "/uploadDir"
file_put_contents($pathUploadDir . '/' . $fileName , $rawData );
Line Reading Example
$lines = array();
$fileHandler = fopen("php://stdin", "r");
while( !feof($fileHandler) AND ($line! = '') ) {
$lines[] = fgets($fileHandler,255);
}
fclose($fileHandler);
print_r($lines);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question