// 準備條件 下載 phpword 的拓展庫
// 加載
$source = IOFactory::load($filePath)->getSections();
foreach ($source as $S)
{
$elements = $S->getElements();
if (!empty($this->GetElement($elements)))
{
$arr = $this->GetElement($elements);
$this->todoGo($arr,$tableCatId,$tableStageId,$filePath,$versionId);
}
}
// 逐級讀取/讀取節點
function GetElement($elements)
{
$arrx=[];
foreach ($elements as $k=>$e1)
{
// 獲取word對象中對應內容類型類的節點的類名
$class = $this->getClass($e1);
if ($class=='Table')
{
// 獲取最大行
$rows=count($e1->getRows());
// 獲取最大列
$cells=$e1->countColumns();
$arrx[$k]['rows']=$rows;
$arrx[$k]['cells']=$cells;
// 循環獲取對應行和列下的單元格的文本內容
for($i=0;$i<$rows;$i++)
{
// 獲取對應行
$rows_a=$e1->getRows()[$i];
for($j = 0; $j < $cells; $j++)
{
// 獲取對應列
$x=$rows_a->getCells()[$j];
$arrx[$k]['text'][$i+1][$j+1]=$this->getTextElement($x);
}
}
}
}
}
//獲取文本的節點
function getTextElement($E)
{
$elements = $E->getElements();
$xas='';
$result = [];
$inResult=[];
$text=[];
foreach($elements as $inE)
{
$ns = get_class($inE);
$elName = explode('\\', $ns)[3];
if($elName == 'Text')
{
$result[] = $this->textarr($inE);
}
elseif (method_exists($inE, 'getElements'))
{
$inResult = $this->getTextElement($inE);
}
if(!is_null($inResult))
{
$result = array_merge($result, $inResult);
}
}
return count($result) > 0 ? $result : null;
}
//獲取文本
function textarr($e)
{
$textArr['text']=$e->getText();
return $textArr;
}