Text_Diff_Renderer_inline::_splitOnWords

Advertisement

Syntax Syntax

Text_Diff_Renderer_inline::_splitOnWords( $string,  $newlineEscape = "n" )

Source Source

File: wp-includes/Text/Diff/Renderer/inline.php

    function _splitOnWords($string, $newlineEscape = "\n")
    {
        // Ignore \0; otherwise the while loop will never finish.
        $string = str_replace("\0", '', $string);

        $words = array();
        $length = strlen($string);
        $pos = 0;

        while ($pos < $length) {
            // Eat a word with any preceding whitespace.
            $spaces = strspn(substr($string, $pos), " \n");
            $nextpos = strcspn(substr($string, $pos + $spaces), " \n");
            $words[] = str_replace("\n", $newlineEscape, substr($string, $pos, $spaces + $nextpos));
            $pos += $spaces + $nextpos;
        }

        return $words;
    }

Advertisement

Advertisement

Leave a Reply