Text_Diff::countDeletedLines() public WP 1.1.0
Returns the number of deleted (removed) lines in a given diff.
{} It's a method of the class: Text_Diff{}
No Hooks.
Return
Int. The number of deleted lines
Usage
$Text_Diff = new Text_Diff(); $Text_Diff->countDeletedLines();
Changelog
Since 1.1.0 | Introduced. |
Since Text_Diff 1.1.0
Code of Text_Diff::countDeletedLines() Text Diff::countDeletedLines WP 5.6
function countDeletedLines()
{
$count = 0;
foreach ($this->_edits as $edit) {
if (is_a($edit, 'Text_Diff_Op_delete') ||
is_a($edit, 'Text_Diff_Op_change')) {
$count += $edit->norig();
}
}
return $count;
}