I'm writing text from database to ODT document table using odtphp, using this http://www.odtphp.com/index.php?i=tutorials&p=tutorial6 example. In generated ODT some international characters are encoded wrong (or not encoded?). There was similar problem with other values, not in segments, that were set using setVar() function, but it was solved using

$odf->setVars($k, $v, true, 'UTF-8');

Looks like there's no additional settings for segment values.

link|improve this question

71% accept rate
What is the character encoding of your segment value? And you should add an excerpt of your code where you run into the problem. – hakre Nov 7 '11 at 17:06
feedback

1 Answer

Looks like that all text in segments were encoded to UTF-8 again, even if text has already been in UTF-8. Currently I solved this issue by replacing line 203 in Segment.php from odtphp with following code:

return $this->setVars($meth, $args[0], false, 'UTF-8');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.