if ($cell->getValue() instanceof RichText) { $returnValue[$rRef][$cRef] = $cell->getValue()->getPlainText(); } else { if ($calculateFormulas) { $returnValue[$rRef][$cRef] = $cell->getCalculatedValue(); } else { $returnValue[$rRef][$cRef] = $cell->getValue(); } } 是什么意思
时间: 2023-05-21 21:04:42 浏览: 124
property-access:PropertyAccess组件提供使用简单的字符串表示法对对象或数组进行读写的功能
这是一段 PHP 代码。如果 $cell->getValue() 返回一个富文本对象,那么将获取纯文本并存储在 $returnValue 数组中。否则,如果 $calculateFormulas 为真,则获取单元格中的计算值,否则获取单元格的值并存储在 $returnValue 数组中。
阅读全文