0

我有 php 脚本,它从 Android 应用程序接收发布数据并对其进行处理。当发布数据自己收到时,我需要向移动设备发送响应,然后在下面的 for 循环中处理数据。

$requestBody = file_get_contents('php://input');
echo "success"; // is it correct way to send response?

$msgData=explode("|",$requestBody);

for($mc=1;$mc<count($msgData);$mc++)
{
   //Run large algorithms with database transactions
}
  1. 在执行for循环之前如何发送响应到手机?
  2. 现在这个 for 循环只在第一次正确执行,然后下一次运行不完整。
4

0 回答 0