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
语句输出字符串的长度。