溫馨提示×

php strlen怎樣處理換行符

PHP
小樊
81
2024-11-18 23:13:23
欄目: 編程語言

在 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)。

0