strlen()
是 PHP 中用于獲取字符串長度的內置函數
<?php
$str = "Hello, World!";
$length = strlen($str);
echo "The length of the string is: " . $length; // 輸出:The length of the string is: 13
?>
在這個例子中,我們首先定義了一個字符串 $str
,然后使用 strlen()
函數計算其長度,并將結果存儲在變量 $length
中。最后,我們使用 echo
語句輸出字符串的長度。