W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
數(shù)字輔助函數(shù)文件包含了用于處理數(shù)字的一些函數(shù)。
該輔助函數(shù)通過下面的代碼加載:
$this->load->helper('number');
該輔助函數(shù)有下列可用函數(shù):
byte_format($num[, $precision = 1])
參數(shù):
返回: Formatted data size string
返回類型: string
根據(jù)數(shù)值大小以字節(jié)的形式格式化,并添加適合的縮寫單位。 譬如:
echo byte_format(456); // Returns 456 Bytes
echo byte_format(4567); // Returns 4.5 KB
echo byte_format(45678); // Returns 44.6 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
可選的第二個參數(shù)允許你設(shè)置結(jié)果的精度:
echo byte_format(45678, 2); // Returns 44.61 KB
注解
這個函數(shù)生成的縮寫單位可以在 language//number_lang.php 語言文件中找到。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: