Exemplo n.º 1
0
 /**
  * Convert to string
  *
  * @return string
  */
 public function __toString()
 {
     return $this->_text->getPlainText();
 }
Exemplo n.º 2
0
 /**
  * 
  * @param PHPExcel_RichText $value
  * @return string
  */
 private function getPText($value)
 {
     $plainText = $value instanceof PHPExcel_RichText ? $value->getPlainText() : $value;
     return $plainText;
 }