CodeIgniter ユーザガイド 日本語版 Version 1.7.3


数字ヘルパ

数字ヘルパのファイルの中身は、数字データを扱うのに役立つ関数です。

ヘルパのロード

このヘルパは次のコードを使ってロードします:

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

次の関数が利用できます:

byte_format()

サイズに基づいて、バイト(bytes)としての数字をフォーマットして、適切な接尾語を加えます。 例:

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

Note: この関数によって生成されたテキストは次の言語ファイルにあります: language//number_lang.php