ItSolutionStuff.com

How to Convert Bytes into KB, MB and GB in PHP?

By Hardik Savani • May 14, 2024
PHP

Hi Developer,

In this example, I will show you how to convert bytes to kb mb gb in php. we will help you to give an example of how to convert bytes to kb in php. you will learn how to convert bytes to mb in php. This example will help you how to convert bytes to gb in php. Follow the below tutorial step of php convert bytes to mb.

In PHP, you can convert bytes into kilobytes (KB), megabytes (MB), and gigabytes (GB) by dividing the given number of bytes by the corresponding factor. Here's a simple example:

index.php

<?PHP

function formatBytes($bytes, $precision = 2) {

$kilobyte = 1024;

$megabyte = $kilobyte * 1024;

$gigabyte = $megabyte * 1024;

if ($bytes < $kilobyte) {

return $bytes . ' B';

} elseif ($bytes < $megabyte) {

return round($bytes / $kilobyte, $precision) . ' KB';

} elseif ($bytes < $gigabyte) {

return round($bytes / $megabyte, $precision) . ' MB';

} else {

return round($bytes / $gigabyte, $precision) . ' GB';

}

}

/* Example usage: */

$bytes = 567890123; /* Replace this with the actual number of bytes you have */

echo formatBytes($bytes);

?>

Output:

541.58 MB

This `formatBytes` function takes the number of bytes as input and converts it to the appropriate unit (B, KB, MB, GB) based on its magnitude. You can customize the precision parameter to control the number of decimal places in the result.

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Upgrade PHP Version from 8.2 to 8.3 in Ubuntu?

Read Now →

How to Merge Two Arrays with Unique Values in PHP?

Read Now →

How to Remove String Values in PHP Array?

Read Now →

How to Get First 2 Elements of Array in PHP?

Read Now →

How to Increase max_input_vars in PHP Ubuntu?

Read Now →

How to Increase post_max_size in PHP Ubuntu?

Read Now →

PHP nl2br() Function Example Tutorial

Read Now →

How to Check If Date is Future Date in PHP?

Read Now →

How to Get Previous Month from Date in PHP?

Read Now →

How to Get Tomorrow Date in PHP?

Read Now →

How to Upgrade PHP Version from 7.4 to 8 in Ubuntu?

Read Now →

PHP Array Get Previous Element from Current Key

Read Now →

PHP Curl Request with Certificate (cert pem file option) Example

Read Now →