将字符串按长度拆分为较小的字符串

时间:2016-02-12 07:37:34

标签: php

我是PHP新手,我正在尝试将字符串拆分成一个较小的字符串,然后返回这些小字符串的数组。

这是我到目前为止所得到的:

    <?php

        $str = $_POST['input']; //It will get the string from the input
        $string = str_split($str, 4);

    for ($i=0; $i <strlen($str); $i++) { 
        $string[$i] = str_split($str,4);
    }

    ?>

<td>Output:</td>
<td align="center"><textarea rows="5" cols="50" readonly="readonly"><?php echo $string[$i]."\n"; ?></textarea></td>

任何人都可以告诉我如何以4的长度返回字符串数组? 非常感谢你。

1 个答案:

答案 0 :(得分:0)

你做得对。只需在str_split

之后返回
    $str = $_POST['input']; //It will get the string from the input
    $string = str_split($str, 4);  // this is a array of strings with lenght 4
    return $string; 

$ string变量具有以下结构:

Array
(
    [0] => Hell
    [1] => oFri
    [2] => day
)