doujing5726 2014-05-30 13:08 采纳率: 0%
浏览 51
已采纳

PHP用新行( )字符[duplicate]划分字符串

This question already has an answer here:

I have string

$string = "one
two
three
four";

Q: How to divide string by " " character to array as :

array ('one', 'two', 'three', 'four');
</div>
  • 写回答

5条回答 默认 最新

  • dongpang9573 2014-05-30 13:10
    关注

    Just use the explode function and use the newline character:

    $array=explode("
    ",$string);
    
    print_r($array);
    

    Having said that, different OS will use different new line breaks. Some will use while others will use which you might want to look into.

    You can combine what you are doing with the nl2br function which covers all the options if you really want to - though I would consider it potentially overkill/complicating the issue:

    $array=explode("<br>",nl2br($string,false));
    print_r($array);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀