바이트 포맷 - B, KB, MB, GB, TB, PB, EB, ZB, YB 변환 > 기술자료 | 해피정닷컴

바이트 포맷 - B, KB, MB, GB, TB, PB, EB, ZB, YB 변환 > 기술자료

본문 바로가기

사이트 내 전체검색

바이트 포맷 - B, KB, MB, GB, TB, PB, EB, ZB, YB 변환 > 기술자료

PHP 바이트 포맷 - B, KB, MB, GB, TB, PB, EB, ZB, YB 변환

페이지 정보


본문

<?php
// 바이트 포맷 - B, KB, MB, GB, TB, PB, EB, ZB, YB 변환
if (!function_exists('byteFormat')) {
    function byteFormat($bytes, $unit = "", $decimals = 2) {
        $units = array('B' => 0, 'KB' => 1, 'MB' => 2, 'GB' => 3, 'TB' => 4, 
        'PB' => 5, 'EB' => 6, 'ZB' => 7, 'YB' => 8);

        $value = 0;
        if ($bytes > 0) {
            // Generate automatic prefix by bytes 
            // If wrong prefix given
            if (!array_key_exists($unit, $units)) {
                $pow = floor(log($bytes)/log(1024));
                $unit = array_search($pow, $units);
            }
            // Calculate byte value by prefix
            $value = ($bytes/pow(1024,floor($units[$unit])));
        }

        // If decimals is not numeric or decimals is less than 0 
        // then set default value
        if (!is_numeric($decimals) || $decimals < 0) {
        $decimals = 2;
        }

        // Format output
        return sprintf('%.' . $decimals . 'f '.$unit, $value);
    }
}
?>

예제보기 : http://happyjung.com/demo/php/byteFormat.php

$file_size = "1234567890";
echo ($file_size) ? "".byteFormat($file_size, "MB")."":"";
?>

1234.00 MB


 참고자료
https://www.jiniya.pe.kr/bbs/board.php?bo_table=pgtip&wr_id=557

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 2 페이지
  • RSS
기술자료 목록
2621
전자결제   4009  2023-11-23 19:53  
열람
PHP   2901  2023-11-20 10:56 ~ 2023-11-20 11:14  
2619
Linux   2321  2023-11-09 19:55  
2618
그누보드   2306  2023-11-06 20:38  
2617
Linux   2291  2023-11-01 21:41 ~ 2023-11-02 10:30  
2616
영카트   2155  2023-10-07 23:31  
2615
SNS   3198  2023-09-24 17:56  
2614
ClassicASP   2824  2023-09-14 08:38  
2613
APP   2386  2023-09-08 12:34 ~ 2023-09-08 17:36  
2612
Apple   4051  2023-09-01 18:16 ~ 2023-09-01 18:36  
2611
SNS   2692  2023-08-30 17:10  
2610
전자결제   2467  2023-08-24 13:32  
2609
Editor   2714  2023-08-11 12:23  
2608
Editor   2782  2023-08-09 21:54 ~ 2023-08-09 21:56  
2607
JavaScript   2648  2023-08-01 23:01 ~ 2023-08-01 23:35  
2606
Android   2638  2023-07-19 14:30 ~ 2023-07-19 14:39  
2605
MSSQL   2714  2023-06-28 17:51 ~ 2023-06-28 17:53  
2604
Android   2744  2023-06-09 17:06 ~ 2023-06-13 16:49  
2603
MySQL   4423  2023-04-25 11:36 ~ 2023-04-25 11:37  
2602
PHP   4010  2023-04-14 18:22 ~ 2023-04-14 18:40  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.