Home  >  Article  >  Backend Development  >  php实现字符串首字母大写和单词首字母大写的方法_PHP教程

php实现字符串首字母大写和单词首字母大写的方法_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:03:03886browse

php实现字符串首字母大写和单词首字母大写的方法

 本文实例讲述了php实现字符串首字母大写和单词首字母大写的方法。分享给大家供大家参考。具体分析如下:

ucfirst可以对字符串首字母进行大小,ucwords可以对字符串中每个单词的首字母大写输出

<?php print ucfirst("hello world");
print ucwords("iam king of the jungle");
?>

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/969343.htmlTechArticlephp实现字符串首字母大写和单词首字母大写的方法 本文实例讲述了php实现字符串首字母大写和单词首字母大写的方法。分享给大家供大家参...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn