當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP string lcfirst()用法及代碼示例


lcfirst() 是內置的 PHP 字符串函數。它用於將字符串的第一個字符轉換為小寫。換句話說,我們可以說它使字符串的第一個字符小寫。它返回轉換後的字符串。

以下是相關函數。

  • ucfirst(): 用於將字符串的第一個字符轉換為大寫。
    • ucwords(): 用於將第一個字符串轉換為大寫。
    • strtoupper(): 用於將字符串轉換為大寫。
    • strtolower(): 用於將字符串轉換為小寫。

用法:

string lcfirst ( string $str );
參數 描述 必需/可選
String 指定要轉換的字符串 required

例子1

<?php
echo "Before using lcfirst() function:PHP"."<br>";
$arr = lcfirst("PHP");
echo "After using 'lcfirst()' function:".$arr;
?>

輸出:

Before using lcfirst() function:PHP
After using 'lcfirst()' function:pHP

例子2

<?php
echo "Before using lcfirst() function:HELLO PHP"."<br>";
$arr = lcfirst("HELLO PHP");
echo "After using 'lcfirst()' function:".$arr;
?>

輸出:

Before using lcfirst() function:HELLO PHP
After using 'lcfirst()' function:hELLO PHP






相關用法


注:本文由純淨天空篩選整理自 PHP string lcfirst() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。