php字符串首字母大写 如
输入:“hellohello”或“hello-hello”或“hello/hello”输出:“HelloHello”或“Hello-Hello”或“Hello/Hello...
输入:“hello hello”或“hello-hello”或“hello/hello”
输出:“Hello Hello”或“Hello-Hello”或“Hello/Hello” 展开
输出:“Hello Hello”或“Hello-Hello”或“Hello/Hello” 展开
展开全部
追问
能够稍微解释一下吗
追答
ucfirst和ucwords函数都不能做到,因为他们要求以空格分开才算单词,对于/和-开头的不转换为大写。
我的语句是正则表达式替换,把非字母开始的字母改为大写。
建议你查查PHP手册,preg_replace_callback的例子程序就是差不多的。
2016-11-01
展开全部
php中可以通过ucfirst函数将一个字符串中的第一个字母转换成大写,而ucwords函数可以将一个字符串中每个单词的首字母转换成大写。
<?php
$string = "php string functions are easy to use.";
$sentence = ucfirst($string);
$title = ucwords($string);
print("$sentence\n");
print("$title\n");
print("\n");
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询