本文目录一览:
php中把字符串首字母转大写方法?
strtoupper
(PHP 4, PHP 5, PHP 7)
strtoupper — 将字符串转化为大写
说明
strtoupper ( string $string ) : string
将 string 中所有的字母字符转换为大写并返回。
注意 “字母” 与当前所在区域有关。例如,在默认的 “C” 区域,字符 umlaut-a(ä)就不会被转换。
参数
string
输入字符串。
返回值
返回转换后的大写字符串。
范例
Example #1 strtoupper() 范例
注释
Note: 此函数可安全用于二进制对象。
参见
strtolower() - 将字符串转化为小写
ucfirst() - 将字符串的首字母转换为大写
ucwords() - 将字符串中每个单词的首字母转换为大写
mb_strtoupper() - 使字符串大写
php字符串首字母大写 如
执行效果:
源代码:
?php
$in="hello hello,hello-hello,hello/hello";
$out=preg_replace_callback('/([^a-zA-Z][a-z])/',
create_function(
'$m',
'return strtoupper($m[0]);'
),
ucfirst($in));
echo "$in\n$out\n";
?
php 写一个方法把一个字符串的第一个字母大些
使用内置函数
ucfirst($string);
如果字符串第一个字符是字母,就将该字符转换成大写!
方法的话,可以这样写。
function daxie($str){
return ucfirst($str);
}