以下 php 代码将为您提供文本数据中的新行数:
echo substr_count(nl2br($textdata), '<br />') + 1;
的用途nl2br()
是支持不同的新行格式(\r\n、\n\r、\ny \r)
测试:
$textdata = 'First line
second line
third line
fourth line';
$lines = substr_count(nl2br($textdata), '<br />') + 1;
echo $lines; //will output 4