WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何在 PHP 中将字符串的第一个字母转换为大写

主题:PHP / MySQL上一页|下一页

答案:使用PHP ucfirst()函数

您可以使用 PHP ucfirst() 函数将字符串的第一个字符更改为大写(即大写)。 或者,您可以将 strtolower() 函数与 ucfirst() 函数结合使用,如果您只想将字符串的第一个字母变为大写,其余 字符串转小写。 让我们看一个例子来了解它是如何工作的:

<?php
$str1 = 'the color of the sky is blue.';
echo ucfirst($str1);
echo "<br>";
$str2 = 'the Color of the Sky is Blue.';
echo ucfirst(strtolower($str2));
?>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements