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 = strlen($str);
echo "The length of the multi-byte string is: " . $length; // 輸出:The length of the multi-byte string is: 6
注意:strlen()
函數計算的是字符串的字節長度,而不是字符個數。對于包含多字節字符的字符串,你可能需要使用 mb_strlen()
函數來計算字符個數。