Is there any way to get size of POST-request body in PHP?
This might work :
$bytesInPostRequestBody = strlen(file_get_contents('php://input')); // This does not count the bytes of the request's headers on its body.