如何以大写形式插入第一个字母

时间:2019-04-08 作者:Dario B.

简短的问题,我有一个与get\\u the\\u title和get\\u the\\u category连接的变量,我需要get\\u the\\u category以大写字母显示第一个字母。

 <?php echo get_the_title().\' - \'.get_post_type( get_the_ID() ) ; ?>
有人有主意吗?

谢谢-

1 个回复
最合适的回答,由SO网友:Neil 整理而成

我想这应该可以

<?php echo ucfirst(get_the_title()) .\' - \'.get_post_type( get_the_ID() ) ;?>