当前位置:Gxlcms > PHP教程 > PHP字符串格式化函数

PHP字符串格式化函数

时间:2021-07-01 10:21:17 帮助过:32人阅读

函数列表:
  • 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

人气教程排行