欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 字符串格式化函数

程序员文章站 2023-12-30 16:48:10
...
函数列表:
  • convert_cyr_string()
  • crc32()
  • hebrev()
  • hebrevc()
  • money_format()
  • number_format()
  1. echo convert_cyr_string('The string', 'k','i');
复制代码
  1. $checksum = crc32("This is the string.");
  2. printf("%u\n", $checksum);
复制代码
  1. //hebrevc() 函数把希伯来文本从右至左的流转换为左至右的流。它也会把新行 (\n) 转换为
  2. //只有 224 至 251 之间的 ASCII 字符,以及标点符号受到影响。
  3. string hebrevc ( string $hebrew_text [, int $max_chars_per_line = 0 ] )
复制代码
  1. $number = 9999.89;
  2. setlocale(LC_MONETARY, 'en_US');
  3. echo money_format('%i', $number);
  4. // Output : USD 9,999.89
复制代码
  1. $number = 9996.89;
  2. echo number_format($number);
  3. # Output : 9,997
  4. echo number_format($number, 2, ',', ' ');
  5. # Output : 9 996,89
复制代码

上一篇:

下一篇: