dongyi1777 2016-06-29 02:02
浏览 31
已采纳

将textarea值扩展为多个数组

Exploding textarea value like this:

explode("
", $input);

would result in one array.

Currently, I am storing $input in textarea like this:

a1
a2
a3

b1
b2
b3

c1
c2
c3

But I want to get multiple array which would result like this:

$test[0][0] = 'a1';
$test[0][1] = 'a2';
$test[0][2] = 'a3';

$test[1][0] = 'b1';
$test[1][1] = 'b2';
$test[1][2] = 'b3';

$test[2][0] = 'c1';
$test[2][1] = 'c2';
$test[2][2] = 'c3';

Any idea, how can I implement?

  • 写回答

2条回答 默认 最新

  • dongxianghui3709 2016-06-29 02:19
    关注

    Explode by two newlines to separate your groups, explode each group by a single newline:

    $result = array_map(
        function ($group) { return explode("
    ", $group); },
        explode("
    
    ", $input)
    );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部