计算过帐字符串中的行数

2022-03-21 00:00:00 count php lines

我已经尝试过:count new lines in textarea to resize container in PHP?

但似乎不起作用:

$content = nl2br($_POST['text']);
preg_match_all("/(<br>)/", $content, $matches);

echo count($matches[0]) + 1;

它将始终输出1

是否有其他解决方案来计算字符串中的行数?


解决方案

在我的一个旧应用中找到此内容.不确定我从哪里得到的。

$lines_arr = preg_split('/
|/',$str);
$num_newlines = count($lines_arr); 
echo $num_newlines;
*编辑-实际上,如果您的文本区域吐出html,这可能不会起作用。检查<br> and <br/>

相关文章