2016-08-25 19:37:30 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Diff API: WP_Text_Diff_Renderer_inline class
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Diff
|
|
|
|
* @since 4.7.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Better word splitting than the PEAR package provides.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
* @uses Text_Diff_Renderer_inline Extends
|
|
|
|
*/
|
|
|
|
class WP_Text_Diff_Renderer_inline extends Text_Diff_Renderer_inline {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
|
|
|
* @param string $string
|
|
|
|
* @param string $newlineEscape
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function _splitOnWords( $string, $newlineEscape = "\n" ) {
|
|
|
|
$string = str_replace( "\0", '', $string );
|
2016-08-25 19:37:30 +02:00
|
|
|
$words = preg_split( '/([^\w])/u', $string, -1, PREG_SPLIT_DELIM_CAPTURE );
|
|
|
|
$words = str_replace( "\n", $newlineEscape, $words );
|
|
|
|
return $words;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|