CodeIgniter User Guide Version 1.7.2


숫자 Number Helper

숫자헬퍼는 숫자관련 작업에 도움을 줍니다.

헬퍼로딩 Loading this Helper

다음과같이 헬퍼를 로드합니다:

$this->load->helper('number');

다음 함수들이 사용가능 합니다:

byte_format()

숫자를 바이트(bytes) 크기 형태로 변경해 줍니다. 그리고 적절한 단위를 붙여줍니다. 예:

echo byte_format(456); // Returns 456 Bytes
echo byte_format(4567); // Returns 4.5 KB
echo byte_format(45678); // Returns 44.8 KB
echo byte_format(456789); // Returns 447.8 KB
echo byte_format(3456789); // Returns 3.3 MB
echo byte_format(12345678912345); // Returns 1.8 GB
echo byte_format(123456789123456789); // Returns 11,228.3 TB

Note: The text generated by this function is found in the following language file: language//number_lang.php