How to Convert Bytes into KB, MB and GB in 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...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Upgrade PHP Version from 8.2 to 8.3 in Ubuntu?
- How to Merge Two Arrays with Unique Values in PHP?
- How to Remove String Values in PHP Array?
- How to Get First 2 Elements of Array in PHP?
- How to Increase max_input_vars in PHP Ubuntu?
- How to Increase post_max_size in PHP Ubuntu?
- PHP nl2br() Function Example Tutorial
- How to Check If Date is Future Date in PHP?
- How to Get Previous Month from Date in PHP?
- How to Get Tomorrow Date in PHP?
- How to Upgrade PHP Version from 7.4 to 8 in Ubuntu?
- PHP Array Get Previous Element from Current Key
- PHP Curl Request with Certificate (cert pem file option) Example