计算已发布字符串中的行数

发布于 2024-12-12 18:06:58 字数 391 浏览 1 评论 0原文

我试过这个: count new line in textarea to在 PHP 中调整容器大小?

但它似乎不起作用:

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

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

它总是输出 1

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

I've tried this: count new lines in textarea to resize container in PHP?

But it doesn't seems to be working:

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

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

It'll always output 1.

Is there any other solutions to count lines in a string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

孤千羽 2024-12-19 18:06:58

在我的一个旧应用程序中发现了这个......不知道我从哪里得到它。

$lines_arr = preg_split('/\n|\r/',$str);
$num_newlines = count($lines_arr); 
echo $num_newlines;

*编辑 - 实际上,如果您的文本区域吐出 html,这可能不起作用。检查

Found this in one of my old apps... Not sure where I got it from.

$lines_arr = preg_split('/\n|\r/',$str);
$num_newlines = count($lines_arr); 
echo $num_newlines;

*Edit - Actually, this probably won't work if your textarea is spitting out html.. check for <br> and <br/>

旧街凉风 2024-12-19 18:06:58

你可以试试这个:

$count = substr_count($_POST['text'], "\n") + 1;

或者:

$count = count(explode("\n", $_POST['text']));

You can try this:

$count = substr_count($_POST['text'], "\n") + 1;

or:

$count = count(explode("\n", $_POST['text']));
最丧也最甜 2024-12-19 18:06:58
count( explode(PHP_EOL, $str) );
count( explode(PHP_EOL, $str) );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文