php小写转大写 ,大写转小写, 首字母大写 ,所有单词首字母大写
Original
976 people have browsed it
实例
echo strtoupper('phpcms').' strtoupper小写转大写';
echo strtolower('PHPCMS').' strtolower大写转小写';
echo ucfirst('word').' ucfirst首字母大写';
echo ucwords('hlleo word').' ucwords 所有单词首字母大写';
echo ucwords('hello|word','|');
运行实例 »点击 "运行实例" 按钮查看在线实例
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
Author's latest blog post