我试过这个:
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.
有没有其他解决方案来计算字符串中的行?
在我的一个旧应用程序中找到了这个…不知道我从哪里得到它.
原文链接:https://www.f2er.com/php/136657.html$lines_arr = preg_split('/\n|\r/',$str); $num_newlines = count($lines_arr); echo $num_newlines;
*编辑 – 实际上,如果你的textarea正在吐出html,这可能不会起作用..检查< br>和< br />