爆炸空行
我正在尝试爆炸空行。
这是我的字符串变量:
$string = '
Hello,
Just test lines
Second test lines
';
我想要这些结果:
$OUTPUT[0]='HELLO,';
$OUTPUT[1]='Just test lines
Second test lines';
我的代码:
$a = explode("\n\n",$string);
print_r($a);
我的字段结果:
Array ( [0] => Hello, Just test lines Second test lines )
I am trying to explode empty line.
Here is my string variable:
$string = '
Hello,
Just test lines
Second test lines
';
I want these results:
$OUTPUT[0]='HELLO,';
$OUTPUT[1]='Just test lines
Second test lines';
My code:
$a = explode("\n\n",$string);
print_r($a);
My field results:
Array ( [0] => Hello, Just test lines Second test lines )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以解决问题:
This should do the trick:
在字符串周围进行修剪,然后用逗号将其分解,然后将逗号添加回第一个元素。
throw a trim around your string, then explode it with the comma, then add the comma back on to the first element.