some useful
程序员文章站
2022-05-08 19:43:49
...
1. number_format
2. ucwords
In Perl (CGI) the function is ucfirst().
Or you can just use CSS:
[code="css]
style="text-transform:capitalize;"
[/code]
3.
$number = 1234.5678;
// english notation without thousands seperator
$english_format_number = number_format($number, 2, '.', '');
// 1234.57
2. ucwords
$bar = 'HELLO WORLD!';
$bar = ucwords($bar); // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
In Perl (CGI) the function is ucfirst().
Or you can just use CSS:
[code="css]
style="text-transform:capitalize;"
[/code]
3.
上一篇: thinkphp如何开发中英双语版的网站
下一篇: MySQL 存储引擎
推荐阅读
-
Js数组方法:filter()、map()、some()、every()、forEach()、indexOf()、lastIndexOf()运用实例
-
出现 vue arr.some is not a function 报错的解决方案
-
js数组对象过滤——filter,find,some,every
-
Jsの练习-数组其他常用方法 -map() ,filter() ,every() ,some()
-
notepad++ 提示There are still some pending actions to complete installing or rem
-
JavaScript中的some()方法使用详解
-
查找Vue中下标的操作(some和findindex)
-
JavaScript 数组some()和filter()的用法及区别
-
javascript some()函数用法详解
-
JS中关于some(),every(),forEach(),map(),filter()之间的区别介绍