strlen()
是 PHP 中一個內置函數,用于計算字符串的長度。它返回字符串中字符的數量。以下是如何使用 strlen()
函數處理字符串的一些示例:
$str = "Hello, World!";
$length = strlen($str);
echo "The length of the string is: " . $length; // 輸出:The length of the string is: 13
$str = "";
$length = strlen($str);
echo "The length of the empty string is: " . $length; // 輸出:The length of the empty string is: 0
$str = "你好,世界!";
$length = mb_strlen($str, 'UTF-8'); // 使用 mbstring 庫處理 Unicode 字符串
echo "The length of the Unicode string is: " . $length; // 輸出:The length of the Unicode string is: 6
注意:在使用 strlen()
函數之前,請確保已經安裝了 PHP 并啟用了相應的擴展。在處理 Unicode 字符串時,建議使用 mbstring
庫,因為它可以正確處理多字節字符。