Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何包含ucfirst在此代码中:
ucfirst
<?php echo $this -> title ?>
我想让所有标题页的第一个字符显示一个大写字母。
示例 hello将变为Hello
<?php echo ucfirst($this->title); ?>
我不会用 PHP 来做。这是一个演示任务,应该使用 CSS 完成:
<span style="text-transform:capitalize"><?php echo $this->title; ?></span>
为简洁起见,我使用了内联样式声明,类在现实生活中会更好。