<?php round(int|float $num, int $precision = 0, int $mode = PHP_ROUND_HALF_UP): float
<?php if ($_SERVER['REQUEST_METHOD'] === 'POST') { $body = file_get_contents('php://input'); $bodySize = round(strlen($body) / 1024 / 1024); echo "Received {$bodySize}Mb"; return; }