The only way you can do that is with computations, rest easy though, the computer takes care of the actual math for you:
$bytes = $_FILES['my_file']['size']; //Size of file in bytes
$kbytes = $bytes / 1024;
$mbytes = $kbytes / 1024; //Size in Mega bytes
Nice and simple :)