在 PHP 中,strlen()
函數(shù)用于計算字符串的長度
<?php
$str = "Hello, World!\nThis is a test.";
$length = strlen($str);
echo "The length of the string is: " . $length; // 輸出:The length of the string is: 23
?>
在這個例子中,strlen()
函數(shù)會返回字符串 “Hello, World!\nThis is a test.” 的長度,即 23 個字符。注意,換行符也被計算在內(nèi)。