输出错误 用新行将其分解,但不显示正确的 strlen 。 输出 1 2 2 2 实际输出应该是 1 1 1 1 我哪里错了??? 最佳答案 '/[;:,\r\n]+/' 确保它是\n-6ren">
gpt4 book ai didi

php preg_split 按新行爆炸

转载 作者:行者123 更新时间:2023-11-30 00:32:01 25 4
gpt4 key购买 nike

<?php
$string = '
1

2

3

4';

$tags = preg_split('/[;:, \rn]+/', $string);
foreach ($tags as $to_x)
{
echo strlen($to_x)."</br>";
}
?>

输出错误

用新行将其分解,但不显示正确的 strlen 。

输出

1

2

2

2

实际输出应该是

1

1

1

1

我哪里错了???

最佳答案

'/[;:,\r\n]+/'

确保它是\n

关于php preg_split 按新行爆炸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22434188/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com