php脚本从android获得每秒25个图像

时间:2016-05-13 13:48:48

标签: php android

我尝试向服务器发送25张图像/秒。在我的Android应用程序中,我将其设置为每40毫秒发送一次图像,所以每1秒我将发送25张图像。但现在使用我的php脚本,它无法获得连续图像,它只获得1个图像,我不得不刷新网站。这是我的PHP脚本

<?php
$base=$_REQUEST['image'];
 $binary=base64_decode($base);
header('Content-Type: bitmap; charset=utf-8');
$file = fopen('uploaded_image.jpg', 'wb');
fwrite($file, $binary);
fclose($file);


$path = "publib_html/"; 
$tmp_name = $_FILES['file']['tmp_name'];
$name = $_FILES['file']['name'];
$type = $_FILES['file']['type']; 
$size = $_FILES['file']['size']; 

move_uploaded_file($tmp_name,$path.$name);

&GT;

我如何修复它以获得每秒25张图像或者你有哪些博客写这篇文章?

提前感谢

0 个答案:

没有答案