PHP字符串格式化函数
时间:2021-07-01 10:21:17
帮助过:32人阅读
函数列表:
convert_cyr_string()
crc32()
hebrev()
hebrevc()
money_format()
number_format()
- echo convert_cyr_string('The string', 'k','i');
- $checksum = crc32("This is the string.");
- printf("%u\n", $checksum);
- //hebrevc() 函数把希伯来文本从右至左的流转换为左至右的流。它也会把新行 (\n) 转换为
。 - //只有 224 至 251 之间的 ASCII 字符,以及标点符号受到影响。
- string hebrevc ( string $hebrew_text [, int $max_chars_per_line = 0 ] )
- $number = 9999.89;
- setlocale(LC_MONETARY, 'en_US');
- echo money_format('%i', $number);
- // Output : USD 9,999.89
- $number = 9996.89;
- echo number_format($number);
- # Output : 9,997
- echo number_format($number, 2, ',', ' ');
- # Output : 9 996,89
|