将PHP中的输入字符串拆分为多个部分而不会破坏单词

时间:2017-02-28 09:43:30

标签: php split substr

已设法获取输入字符串并将其拆分为两部分并将其写入2个文件。我现在想要实现的是当它超过我的极限时能够接受它并将其分成3个甚至4个部分并将这些数据写入单独的文件而不会破坏输入。

这是我到目前为止所处理的问题,我在此问题中找到了这个问题:Split Strings in Half (Word-Aware) with PHP

public function createfiles(array $lines)
{
    $File1  = __DIR__ . '/file1.txt';
    $File2  = __DIR__ . '/file2.txt';

    $regexLines = [];

    foreach ($lines as $line) {
        $regexLines[] = preg_quote($line);
    }
    $data = implode('|', $regexLines);

    //current data input is 18000
    $myLimit = 10000;

    $dataLength = strlen($data);

    if ($dataLength > $myLimit) {

        $middle = strrpos(substr($data, 0, floor($dataLength / 2)), '/') + 1;
        //now want to split into four parts if input data is for instance 35000 characters

        // Strip off trailing /
        $data1 = substr($data, 0, $middle-1);
        $data2 = substr($data, $middle);
        //now want a $data3 and $data4 also stripping off a trailing /

        $this->writeToFile($File1, $data1);
        $this->writeToFile($File2, $data2);
        //now want to write to $File3 and $File4 if needed

    } else {
        $this->writeToFile($File1, $data);
    };
}

1 个答案:

答案 0 :(得分:0)

最后在挖掘和摆弄数小时后找到了解决方案。我把它扔了一个大清单,它把它很好地分解成7个文件给我,而不会破坏一半。

public function createmultiplefiles(array $lines)
{
    $regexLines = [];

    foreach ($lines as $line) {
        $regexLines[] = preg_quote($line);
    }
    $data = implode('|', $regexLines);

    $mylimit = 10000;
    $datalength = strlen($data);
    $lastpos = 0;

    for ($x = 1; $lastpos < $datalength; $x++) {

        if( ($datalength-$lastpos) >= $mylimit){
            $pipepos = strrpos(substr($data, $lastpos, $mylimit), '|');
            $splitdata = substr($data, $lastpos, $pipepos);
            $lastpos = $lastpos + $pipepos+1;
        }else{
            $splitdata = substr($data, $lastpos);
            $lastpos = $datalength;
        }
        $file = __DIR__ . 'myfile-' . $x . '.txt';
        $this->writeToFile($file, $splitdata);
    }
}