WP_Text_Diff_Renderer_inline WordPress Class
The WP_Text_Diff_Renderer_inline class is used to render the differences between two pieces of text in an inline fashion. This is useful for showing the differences between two versions of a post, for example.
WP_Text_Diff_Renderer_inline #
Better word splitting than the PEAR package provides.
Source
File: wp-includes/class-wp-text-diff-renderer-inline.php
class WP_Text_Diff_Renderer_inline extends Text_Diff_Renderer_inline {
/**
* @ignore
* @since 2.6.0
*
* @param string $string
* @param string $newlineEscape
* @return string
*/
public function _splitOnWords( $string, $newlineEscape = "\n" ) {
$string = str_replace( "\0", '', $string );
$words = preg_split( '/([^\w])/u', $string, -1, PREG_SPLIT_DELIM_CAPTURE );
$words = str_replace( "\n", $newlineEscape, $words );
return $words;
}
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |