To skip over deletion nodes in the xml extracted from a word document, do something like this:
if ($paragraph->nodeType == XMLREADER::ELEMENT && $paragraph->name === 'w:del'){$paragraph->next();}
To skip over deletion nodes in the xml extracted from a word document, do something like this:
if ($paragraph->nodeType == XMLREADER::ELEMENT && $paragraph->name === 'w:del'){$paragraph->next();}