- 19 Dec 2024, 11:57
#5920
I've just tried the chat to no avail:
I'll keep looking.
Code: Select all
That does nothing.case DOCUMENT_TYPE_DOCX:
$this->_rawOutput = mb_convert_encoding($this->docx2text($fileName), 'UTF-8', 'auto');
if ($this->_rawOutput == null) {
return false;
}
$this->_linesArray = explode("\n", $this->_rawOutput);
$this->_linesString = $this->_rawOutput;
return true;
case DOCUMENT_TYPE_ODT:
$this->_rawOutput = mb_convert_encoding($this->odt2text($filename), 'UTF-8', 'auto');
if ($this->_rawOutput == null) {
return false;
}
$this->_linesArray = explode("\n", $this->_rawOutput);
$this->_linesString = $this->_rawOutput;
return true;
I'll keep looking.