Text_Diff_Op{}
Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.
No Hooks.
Usage
$Text_Diff_Op = new Text_Diff_Op(); // use class methods
Methods
Notes
- Package: Text_Diff
Text_Diff_Op{} Text Diff Op{} code WP 6.8.3
abstract class Text_Diff_Op {
var $orig;
var $final;
abstract function &reverse();
function norig()
{
return $this->orig ? count($this->orig) : 0;
}
function nfinal()
{
return $this->final ? count($this->final) : 0;
}
}