温馨提示×

php strlen怎样处理换行符

PHP
小樊
81
2024-11-18 23:13:23
栏目: 编程语言

在 PHP 中,strlen() 函数用于计算字符串的长度

<?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() 函数会返回字符串 “Hello, World!\nThis is a test.” 的长度,即 23 个字符。注意,换行符也被计算在内。

0