Loading src/Calc/Cell.php +12 −4 Original line number Diff line number Diff line Loading @@ -102,7 +102,15 @@ class Cell */ public function getContent(): string { return $this->node->textContent; $childs = $this->node->childNodes; $content = ''; foreach( $childs as $child){ if ($child->tagName === 'text:p'){ $content .= $child->textContent; } } return $content; } Loading Loading
src/Calc/Cell.php +12 −4 Original line number Diff line number Diff line Loading @@ -102,7 +102,15 @@ class Cell */ public function getContent(): string { return $this->node->textContent; $childs = $this->node->childNodes; $content = ''; foreach( $childs as $child){ if ($child->tagName === 'text:p'){ $content .= $child->textContent; } } return $content; } Loading