Get size of POST-request in PHP

后端 未结 5 2059
遥遥无期
遥遥无期 2020-11-28 15:55

Is there any way to get size of POST-request body in PHP?

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-28 16:17

    This might work :

    $bytesInPostRequestBody = strlen(file_get_contents('php://input'));
    // This does not count the bytes of the request's headers on its body.
    

提交回复
热议问题